gocomp 200 B

123456789
  1. #!/bin/bash
  2. FILES=~/goprograms/compiletest/*.go
  3. for f in $FILES
  4. do
  5. echo "Processing $f file..."
  6. # take action on each file. $f stores current file name
  7. # cat $f
  8. 6g $f >> compout
  9. done