使用以下命令:
find /tmp -depth -name file
我得到了:
/tmp/file
/tmp/test_file/file
但是我需要添加什么来查找命令才能获得以下打印?
file=/tmp/file
file=/tmp/test_file/file
答案1
也许有以下printf
选择:
find /tmp -depth -name "file" -printf "file=%h/%f\n"
使用以下命令:
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"