> set filename abcde
 > set --erase not_a_filename

 > echo out > $filename
 > rm $filename
 > #given that, this is weird:
 > echo out > $not_a_filename
fish: Expected redirection specification, got token of type 
“$not_a_filename”
echo out > $not_a_filename
            ^

 > echo out > (echo $filename)
 > rm $filename
 > echo out > (echo $not_a_filename)
fish: Invalid IO redirection
echo out > (echo $not_a_filename)
            ^
 > echo out > (echo)
fish: Invalid IO redirection
echo out > (echo)
            ^
 > echo out > (echo -n)
fish: Expected redirection specification, got token of type “(echo -n)”
echo out > (echo -n)
            ^

Hmm. I'm a little confused (although luckily it seems to be only the 
messages that are confusing me -- it seems quite sensible so far in 
*whether* it accepts a redirection)

-Isaac

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to