mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 06:36:43 +08:00
10 lines
191 B
Bash
10 lines
191 B
Bash
#!/bin/bash
|
|
FILES=~/goprograms/compiletest/*.go
|
|
for f in $FILES
|
|
do
|
|
echo "Processing $f file..."
|
|
# take action on each file. $f stores current file name
|
|
# cat $f
|
|
6g $f >> compout
|
|
done
|