Welcome to the C shell.
Output to dev/null
:
portsnap extract >& /dev/null
The syntax is different here, in that there is no in
keyword.
#!/bin/csh foreach x ( one two three ) echo number $x! end
#!/bin/csh foreach filename ( foo.tar.gz bar.tar.bz2 ) if ( ! -e $filename ) then echo "I can't find $filename anywhere!" endif end
#!/bin/csh echo found $#argv arguments echo first argument is: $argv[1] echo second argument is: $argv[2]
args.csh Hello CSH