有没有返回文件所有者的命令?
是否有 shell 命令可以只打印文件的所有者?
我想我可以这样做:
ls -l | awk '{print $3}'
但这感觉问题会有一个更直接的答案。
Is there a shell command to just print the owner of a file?
I guess I could just do:
ls -l | awk '{print $3}'
but this feels like there would be a more straightforward answer to the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
stat(1)
有很多可用的格式序列:用户 ID、总大小等。
Try using
stat(1)
There are lots of format sequences available: user ID, total size, etc.
您还可以使用
find
命令:You can also use the
find
command: