有什么区别:
find .
Run Code Online (Sandbox Code Playgroud)
和
find . -print
Run Code Online (Sandbox Code Playgroud)
什么是-print
真正做到?
$ find .
.
./hello.txt
./hello
./hello/txt
./hello/hello2
./hello/hello2/hello3
./hello/hello2/hello3/txt
./hello/hello2/txt
$ find . -print
.
./hello.txt
./hello
./hello/txt
./hello/hello2
./hello/hello2/hello3
./hello/hello2/hello3/txt
./hello/hello2/txt
Run Code Online (Sandbox Code Playgroud)