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.
我在脚本中使用 stat 两次,一次是查找文件文件权限,一次是查找文件的大小。
`stat -c %A "$directory/$file"` `stat -c %s "$directory/$file"`
我正在使用 OSX 10.7,目录和文件是我所在的当前目录和文件的变量。
Darwinstat使用-f参数,而不是-c,因为它是 GNU 扩展。
stat
-f
-c
您应该从homebrew、macports或fink下载 gnu binutils,然后gstat使用stat.
gstat
如果您不想安装 gnu binutils 而更喜欢使用标准 BSD 工具,那么:
stat -f%p t.c
将返回模式(八进制)和
stat -f%z t.c
将返回大小。