Bash Shell技巧用法总结2018-12-29 本文已影响0人 sudacq 一、ls 用法 1.列出所有一级目录 ls -l | grep "^d" 2.递归的列出所有目录 ls -lR | grep ":$" 3.列出所有文件 ls -lR | grep "^-"