Hacker News new | ask | show | jobs
by somat 8 days ago
I have used echo as a sort of poor mans equivalent for a safe check of a pipeline, removing the echo when I felt the rest of the pipeline was working correctly.

  shell stuff | xargs -n 1 -I % echo real command and % args
I have also been known to write scripts where instead of executing the critical parts it prints them. Then a dry run is

  script
and the real run is

  script | sh
2 comments

Shouldn't you use echo instead of cat?
yes echo, total brain fart there. corrected.
Love that idea, thanks for sharing