Skip to main content
added 108 characters in body
Source Link
vonbrand
  • 18.6k
  • 2
  • 40
  • 63

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Also check 24337

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Also check 24337

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

added 1 character in body
Source Link
muru
  • 78.1k
  • 16
  • 213
  • 319

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

some long running stuff | sed -e 's/^/Some said: /;'

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...

Source Link
vonbrand
  • 18.6k
  • 2
  • 40
  • 63

You could pipe the output through some way of replacing lines:

some long running stuff | sed -e 's/^/Some said: /;'

Or just direct separate outputs to separate files/screen(1) tabs/tabs in your terminal/...