Question: 
---------
How do I group commands together?

Answer:
-------
Use a begin/end block.  For example the Fish code

    begin; printf "hello" ; printf " world\n" ; end > greeting

is analagous to the Bourne Shell code

    { printf "hello" ; printf " world\n" ; } > greeting 

Run
    man begin
for more details.

------------------------------------------------------------------------------
_______________________________________________
Fish-users mailing list
Fish-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to