好吧,昨天我的终端运行正常,但突然间,它发现不再存在任何文件或目录。以下是发生的情况:
seabass@seabass:~$ find /home/seabass/Documents hello
/home/seabass/Documents
/home/seabass/Documents/test
/home/seabass/Documents/test/hello
find: `hello': No such file or directory
和:
seabass@seabass:~$ find /home/seabass/Documents test
/home/seabass/Documents
/home/seabass/Documents/test
/home/seabass/Documents/test/hello
find: `test': No such file or directory
答案1
由于您使用的方法错误,因此无法正常工作。请尝试:
find /home/seabass/Documents/hello
各自:
find /home/seabass/Documents/test
或者:
find /home/seabass/Documents -name hello
各自:
find /home/seabass/Documents -name test
请参阅man find
和find --help
以了解更多信息。
答案2
尝试该-name
参数。它认为您希望它搜索文件里面 hello
或者test
,但我猜这不是你想要的。
find /home/seabass/Documents -name hello