通配符
* 任意字符,可重復(fù)多次
? 任意字符,重復(fù)一次
[] 代表一個字符
舉例: [a,b,c] 表示abc中任意一個
通配符的作用是用來匹配文件名的
正則表達(dá)式
正則表達(dá)式是在文件中匹配符合條件的字符串的
ls find cp是不支持正則表達(dá)式的
但是grep awk sed支持正則表達(dá)式
[root@hadoop-bigdata01 test]# touch aa[root@hadoop-bigdata01 test]# touch aab aabb[root@hadoop-bigdata01 test]# lltotal 0-rw-r--r-- 1 root root 0 May 16 19:47 aa-rw-r--r-- 1 root root 0 May 16 19:47 aab-rw-r--r-- 1 root root 0 May 16 19:47 aabb [root@hadoop-bigdata01 test]# ls aaaa [root@hadoop-bigdata01 test]# ls aa?aab [root@hadoop-bigdata01 test]# ls aa*aa aab aabb