相关疑难解决方法(0)

find 和有什么区别。并找到。-打印

有什么区别:

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)

command-line find

34
推荐指数
3
解决办法
3万
查看次数

标签 统计

command-line ×1

find ×1