find:
举例:find -L /build/path/ -mindepth 2 -maxdepth 5 -name filename
-L 包含/build/path下面的软连接子目录
-mindepth 2 从第一层子目录开始查
-maxdepth 5 查找深度最多为4层
tree:
出现乱码:
$ tree abc/
abc/
???? BRANCHES_FLOW.groovy
???? BRANCH_PIPELINE_FLOW.groovy
???? CI.groovy使用--charset ASCII参数可以解决乱码的问题:
$ tree --charset ASCII abc/
abc/
|-- BRANCHES_FLOW.groovy
|-- BRANCH_PIPELINE_FLOW.groovy
|-- CI.groovy
去除test.txt文件中的重复行:
用sort+uniq,注意,单纯uniq是不行的。
sort -n test.txt | uniq