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.
我想简单地打印出目录的这些详细信息,并且我想用 perl 编写脚本,有什么见解吗?
用于stat获取文件所有者的 UID 并getpwuid获取 ID 的用户名,例如:
stat
getpwuid
我的 $owner = getpwuid((stat)[4]);
请注意,如果您getpwuid在列表上下文中调用,它将返回一个值列表,其中第一个是用户名。