标签: bash unix
试图获取打印在行尾的文件大小。
这是我的代码。
#!/bin/bash # # find /home/clf18ftf -type f \( -size -100c -o -size +1000c \)
答案 0 :(得分:0)
根据查找手册:
find /home/clf18ftf -type f \( -size -100c -o -size +1000c \) -printf "%h/%f %s bytes\n"