我如何grep文件名(在另一条路径中)。
示例:
我的文件位于目录
中 /export/home/test
- >在这个目录下我有一个名为file_test
我想从另一条路径/export/home
grep寻找文件名file_test,怎么可以这样做?
答案 0 :(得分:0)
你的意思是sym-links?
你可以注册一个这样的:
ln -s /export/home/test /export/home
通用方式:
ln -s <destination> <link-name>
答案 1 :(得分:0)
您可以使用ls /export/home/file_test
。