0

我试图搜索一个 1033 字节大小的文件。经过半小时的谷歌搜索,我找到了一个显示当前目录中所有文件名和大小的命令。

find -printf 'Name: %16f Size: %6s\n'

如何%16f%6s显示名称和文件大小?

4

1 回答 1

1

我试图搜索一个 1033 字节大小的文件。

你可以说:

find . -type f -size 1033c

%f并且%sprintf选项的指令:

          %f     File's name with any leading  directories  removed  (only
                 the last element).

          %s     File's size in bytes.

%16f会填充文件名;请注意,如果文件名超过 16 个字符,输出可能会被截断。

于 2013-10-29T08:55:47.650 回答