Comment on Linux Commands for DevelopersparentComments−michaelcampbell14yIn bash... $(grep -i 'pattern' file | awk '{print $5}' | sed 's/^/cmd/g') ?Or surround in backticks `command which outputs text you want to run as a command` I prefer $() as they nest better.Or have I misunderstood your question?−yogione14yThat's it $() works. thanks.
Comments
In bash...
?Or surround in backticks
I prefer $() as they nest better.Or have I misunderstood your question?
That's it $() works. thanks.