用法:truncate 選項... 文件... 將文件縮減或擴展至指定大小。 -c, --no-create 不建立文件 -o, --io-blocks 將SIZE 視爲IO 塊數而不使用字節數 -r, --reference=文件 使用此文件的大小 -s, --size=大小 使用此大小 --help 顯示此幫助信息並退出 --version 顯示版本信息並退出
安裝bash
brew install truncate
建立文件spa
echo -n test > test.txt
查看code
ll test.txt # -rw-r--r-- 1 Miller staff 4B Jun 1 10:37 test.txt
壓縮大小io
truncate -s 0 test.txt ll test.txt -rw-r--r-- 1 Miller staff 0B Jun 1 10:44 test.txt