1. ls 在shell中进行模糊查找的话就是使用通配符了,如ls *.c
2. grep就是根据一个正则表达式查找匹配的行,比如grep '[Hh]ello' test.c 从test.c中查找hello和Hello
3. more就是分页查看,可以直接more file也可以 cat file|more来分页查看文件file。
4. 有问题,找男人,多难过查查man page就熟悉了。
find /path -type d -name "*some*"
在/path下查找名字里含有some的目录
ls 和 grep 综合使用:
列出 mypath/ 目录下包含 “sub”字样的文件
cd mypath/
ls | grep "sub"