1:删除当前目录下 后缀为 ”.***“的文件
find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件
2:清空某个文件的内容
echo "" > filename