1
> find . -type f -exec print {} \;
find: cannot execute print:: No such file or directory
> find . -type f -exec echo {} \;
f1.txt
f2.txt
...
爲什麼「find -exec print」不起作用?
Shell - ksh。「find -exec print」不起作用
你說得對。這是ksh內置。謝謝。 –
不客氣。是的,我應該說「shell內建」,而不是「bash內建」;-) –
謝謝,Ignacio ;-) –