Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクトリの下で最小のファイルと最大のファイルを見つけるように求める宿題をしています。しかし、私の出力は「最小のファイルは xxx (xxxx -'filename' bytes)」のようなものです。
du -b | sort -rh | head -n 1 | awk '{print "The smallest file is " $1 " bytes"}'