需要帮助列出符号链接

发布于 2024-12-02 06:27:55 字数 115 浏览 1 评论 0原文

在 Unix/Linux 系统上,我需要在一组目录上运行“find”命令来查找这些目录中的所有符号链接是什么。我需要获取一个文件中的符号链接路径列表以及另一个文件中这些符号链接上的“ls -l”输出列表。我该怎么做?

On a Unix/Linux system I need to run the "find" command on a set of directories to find what all the symbolic links within those directories are. I need to get a list of the symbolic link paths in one file AND a list of the output of "ls -l" on those symbolic links in another file. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

霓裳挽歌倾城醉 2024-12-09 06:27:56

更改到有问题的目录,然后:

$ find -type l > /tmp/link_names.txt

$ (for link in $(cat /tmp/output.txt); do ls -l "$link"; done) > /tmp/link_details.txt

警告:如果任何路径包含空格,则必须使用类似的内容来获取“ls -l”输出:

$ find -type l | -print0 | xargs -0 ls -l > /tmp/link_details.txt

Change to the directory in question, then:

$ find -type l > /tmp/link_names.txt

$ (for link in $(cat /tmp/output.txt); do ls -l "$link"; done) > /tmp/link_details.txt

Warning: if any of the paths contain spaces you'll have to use something like this to get the "ls -l" output:

$ find -type l | -print0 | xargs -0 ls -l > /tmp/link_details.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文