Skip to content

Instantly share code, notes, and snippets.

View bashun's full-sized avatar

Shunji Baba bashun

View GitHub Profile
@bashun
bashun / gist:596a9ca3160f838f8ea094dcf7650918
Created July 28, 2017 04:05
20170728_100本ノック
10)
wc hightemp.txt
11)
sed -i 's/\t/ /g' ./hightemp.txt
12)
cat hightemp.txt | while read line; do echo $line | cut -d ' ' -f1 >> col1.txt; done
cat hightemp.txt | while read line; do echo $line | cut -d ' ' -f2 >> col2.txt; done