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.
我目前在“/media/”下安装了许多驱动器,我想递归地扫描所有安装的驱动器,以查找具有特定扩展名“*.foo”的文件。一旦找到,我想将这些文件符号链接到其他地方的目录中。一个要求是我在创建符号链接时保持文件的基本名称相同。我无法自己使用“find -exec”提出一个简单的解决方案。是否有捷径可寻?
查找 /media/ -name *.foo | xargs ln -s -t DIRECTORYYOUWANTLINKSIN