-1
在我的Ubuntu,例如:
$ pwd
/home/yangxiaoyu/c/test
如果我說:
ls /home/yangxiaoyu/c/test/cat
我得到:
ls: 無法訪問'/home/yangxiaoyu/c/test/cat': No such file or directory
,但是,如果我說:
ls $(pwd/cat)
我得到:
bash: pwd/cat: No such file or directory
0x2b 1.txt catfile ff readFile.c ~rootfile yxy.h
0X2b.c a.out example list ref.c thread.c
正如你可以看到,當我使用$(pwd/cat)
作爲參數傳遞給ls
它顯示了一個錯誤輸出,並在當前目錄中的項目清單。
這是怎麼發生的?
在你的榜樣「,什麼是貓? – Pierre
我*想*你想'ls $(pwd)/貓'。 –