# 清空或刪除大文件內容的五種方法:工具
# 法一:經過重定向到 Null 來清空文件內容
spa
$ >test.shregexp
# 法二:使用 ‘true' 命令重定向來清空文件string
$ true > test.shit
# 可經過下列命令來查看文件容量是否爲0 class
$ du -h test.sh 0 test.shtest
# 法三:使用 cat/cp/dd 實用工具及 /dev/null 設備來清空文件方法
$ cat /dev/null > test.sh重定向
# 或 word
$ cp /dev/null test.sh
# 或
$ dd if=/dev/null of=access.log
# 法四:使用 echo 命令清空文件
$ echo -n "" > test.sh
# 法五:使用 truncate 命令來清空文件內容
$ truncate -s 0 test.sh