需要帮助列出符号链接
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改到有问题的目录,然后:
警告:如果任何路径包含空格,则必须使用类似的内容来获取“ls -l”输出:
Change to the directory in question, then:
Warning: if any of the paths contain spaces you'll have to use something like this to get the "ls -l" output: