Denys Vlasenko | b70cef7 | 2010-01-12 13:45:45 +0100 | [diff] [blame^] | 1 | echo Not shown | if true; then echo $(echo Ok); fi |
2 | echo Not shown | if true; then echo `echo Ok`; fi | ||||
3 | echo Not shown | ( if true; then echo $(echo Ok); fi ) | ||||
4 | echo Not shown | ( if true; then echo `echo Ok`; fi ) | ||||
5 | echo Done |