Find
查找命令 + 列印操作
使用以下命令:
find /tmp -depth -name file
我得到:
/tmp/file /tmp/test_file/file
但是我需要添加什麼來查找命令以獲得以下列印?
file=/tmp/file file=/tmp/test_file/file
也許可以
printf
選擇:
find /tmp -depth -name "file" -printf "file=%h/%f\n"