awk
コマンドを使用するファイルのすべての行のうち、最も長い長さが必要です。
ベストアンサー1
awk '{ if (length($0)>maxlength) { maxlength=length($0); longest_line=$0; } };
END { print longest_line; }' inputfile
awk
コマンドを使用するファイルのすべての行のうち、最も長い長さが必要です。
awk '{ if (length($0)>maxlength) { maxlength=length($0); longest_line=$0; } };
END { print longest_line; }' inputfile