Linux下清空文件内容的三种方法 第一种 cat /dev/null > /xxx/file(要清空的文件) 第二种 echo “” > /xxx/file(要清空的文件) 第三种 > /xxx/file(要清空的文件)