Dixi quod: >(as stdin replacement)
More on this: t...@frozenfish:~ $ mksh t...@frozenfish:~ $ true <x; echo $? mksh: cannot open x: No such file or directory 1 t...@frozenfish:~ $ ^D t...@frozenfish:~ $ bash t...@frozenfish:~$ true <x; echo $? bash: x: No such file or directory 1 t...@frozenfish:~$ exit t...@frozenfish:~ $ PS1='$ ' zsh $ true <x; echo $? zsh: no such file or directory: x 1 $ t...@frozenfish:~ $ ksh93 t...@frozenfish:...home/tg $ true <x; echo $? ksh93: x: cannot open [No such file or directory] 1 t...@frozenfish:/home/tg $ t...@frozenfish:~ $ PS1='$ ' dash $ true <x; echo $? dash: cannot open x: No such file 2 $ t...@frozenfish:~ $ PS1='$ ' dash x; echo $? dash: Can't open x 2 t...@frozenfish:~ $ PS1='$ ' dash -c x; echo $? dash: x: not found 127 bye, //mirabilos -- Sometimes they [people] care too much: pretty printers [and syntax highligh- ting, d.A.] mechanically produce pretty output that accentuates irrelevant detail in the program, which is as sensible as putting all the prepositions in English text in bold font. -- Rob Pike in "Notes on Programming in C" -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

