在linux服务器我们经常用find来查找文件
在查找文件时如何使用and与条件
比如查找所有扩展名不是.txt与.html的所有文件
MacBook-Air:test yansy$ ls -rlht
total 0
-rw-r--r-- 1 yansy staff 0B 4 30 12:26 1.txt
-rw-r--r-- 1 yansy staff 0B 4 30 12:26 1.jpg
-rw-r--r-- 1 yansy staff 0B 4 30 12:27 test.jpg
-rw-r--r-- 1 yansy staff 0B 4 30 12:27 test.txt
-rw-r--r-- 1 yansy staff 0B 4 30 21:16 1.html
MacBook-Air:test yansy$
MacBook-Air:test yansy$ find . ! -name "*.txt" -a ! -name "*.html"
.
./1.jpg
./test.jpg
MacBook-Air:test yansy$