2022-01-01から1ヶ月間の記事一覧
概要 sample.txt Kim test Charchile aaaaaa 上のようなテキストファイルを test.sh #/bin/sh cat test.txt | while read line do col1=`echo ${line} | cut -d ' ' -f 1` col2=`echo ${line} | cut -d ' ' -f 2` echo "Column1: ${col1} Column2: ${col2}" …
概要 sample.txt Kim test Charchile aaaaaa 上のようなテキストファイルを test.sh #/bin/sh cat test.txt | while read line do col1=`echo ${line} | cut -d ' ' -f 1` col2=`echo ${line} | cut -d ' ' -f 2` echo "Column1: ${col1} Column2: ${col2}" …