Help for this page

Select Code to Download


  1. or download this
    bash$ echo "foo" >*
    
  2. or download this
    bash$ for i in foo bar baz bletch ; do cp /dev/null $i ; done
    bash$ echo "foo" >*
    
  3. or download this
    foreach qw(foo bar baz bletch) { open I, ">$_"; print I $_; close I }