テキストファイルの1行の最大文字数を調べる awk '{ if (length($0) > max) max = length($0) } END { print max }' ${FILE_NAME}