有没有返回文件所有者的命令?

发布于 2024-12-27 11:59:08 字数 127 浏览 0 评论 0原文

是否有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

楠木可依 2025-01-03 11:59:08

尝试使用 stat(1)

[cnicutar@fresh ~]$ stat -c %U file.c
cnicutar

有很多可用的格式序列:用户 ID、总大小等。

Try using stat(1)

[cnicutar@fresh ~]$ stat -c %U file.c
cnicutar

There are lots of format sequences available: user ID, total size, etc.

时光礼记 2025-01-03 11:59:08

您还可以使用 find 命令:

find -maxdepth 1 -name 'file.c' -printf '%u\n'

You can also use the find command:

find -maxdepth 1 -name 'file.c' -printf '%u\n'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文