geek stuff, writ fast
$ x=42 $ x=6 | x=9 $ echo $x 42
$ x=42 $ { echo $x>/dev/tty; x=6; } | { echo $x>/dev/tty; x=9; } 42 42 $ echo $x 42
Post a Comment
No comments:
Post a Comment