Dan Douglas <[email protected]> writes: > Another thing you can do in bash is bypass its command name check by using a > null zeroth word. > > $ { function } { echo test; }; <() }; } > test > > Ordinarily } would be uncallable,
Only literal } is special, you can use \} instead, or store it in a variable. Andreas. -- Andreas Schwab, [email protected] GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."
