Text only
11 Nov 2009
 
 
Tools: wrap/unwrap  
1
2
3
4
5
6
7
8
9
thriller@localhost ~ :) failed=0
thriller@localhost ~ :) false || failed=1
thriller@localhost ~ :) [ "$failed" = "1" ] && echo fail
fail
thriller@localhost ~ :) failed=0
thriller@localhost ~ :) { false || failed=1; } | less
thriller@localhost ~ :) [ "$failed" = "1" ] && echo fail
thriller@localhost ~ :(