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 $filename 来获取大小。
du -b | sort -rh | head -n 1 | awk '{print "The smallest file is " $1 " bytes"}'