logoalt Hacker News

somatyesterday at 11:04 PM2 repliesview on HN

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

Replies

krackerstoday at 12:45 AM

Shouldn't you use echo instead of cat?

show 1 reply
bryancoxwelltoday at 12:28 AM

Love that idea, thanks for sharing