如何在Linux中使用 Truncate 命令
Truncate 通常用於將檔案縮小或擴充套件到指定的大小。如果檔案大於指定的大小,則會丟失額外的資料。如果檔案較短,則會對其進行擴充套件,並且擴充套件部分的讀數為零位元組。 |
7
通常作業系統會安裝truncate ,該命令在coreutils安裝包裡面,如果沒有安裝可以使用下面命令安裝:
[root@localhost ~]# yum provides truncate Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. Loading mirror speeds from cached hostfile * base: mirrors.huaweicloud.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com coreutils-8.22-24.el7.x86_64 : A set of basic GNU tools commonly used in shell scripts Repo : base Matched from: Filename : /usr/bin/truncate coreutils-8.22-24.el7.x86_64 : A set of basic GNU tools commonly used in shell scripts Repo : @anaconda Matched from: Filename : /usr/bin/truncate
可以看到truncate由coreutils安裝包提供,下面安裝coreutils安裝包:
[root@localhost ~]# yum -y install coreutils
下面是truncate的常用選項:
-c, --no-create --> 不建立任何檔案 -o, --io-blocks --> 將大小視為儲存塊的數量,而不是位元組 -r, --reference=RFILE --> 參考指定的檔案大小 -s, --size=SIZE --> 按照指定的位元組設定檔案大小
這對於清除日誌檔案很有用。truncate過程基本上刪除了檔案的所有內容。它不會刪除檔案本身,但會將它作為零位元組檔案保留在磁碟上。例如,讓我們使用truncate將/var/log/yum.log清除為0個位元組。
[root@localhost ~]# du -sh /var/log/yum.log 12K /var/log/yum.log [root@localhost ~]# truncate -s 0 /var/log/yum.log
再次檢視這個檔案,發現位元組為0了。檢視內容是空的了。
[root@localhost ~]# du -sh /var/log/yum.log 0 /var/log/yum.log [root@localhost ~]# cat /var/log/yum.log
truncate命令將保留檔案所有權。可以使用ll -h命令進行確認:
[root@localhost ~]# ll -h /var/log/yum.log -rw-------. 1 root root 0 Nov 4 18:39 /var/log/yum.log
下面的示例將檔案填充為10K個位元組。
[root@localhost ~]# touch file.txt [root@localhost ~]# ll -h file.txt -rw-r--r--. 1 root root 0 Nov 4 18:43 file.txt [root@localhost ~]# truncate -s 10k file.txt [root@localhost ~]# ll -h file.txt -rw-r--r--. 1 root root 10K Nov 4 18:43 file.txt
單位有 K, M, G, T, P, E, Z, Y。
也可以將檔案的大小從當前擴充套件到所需狀態。使用-s選項,在數字前面加上
+
[root@localhost ~]# cat /etc/passwd > file.txt [root@localhost ~]# ll -h file.txt -rw-r--r--. 1 root root 1009 Nov 4 18:47 file.txt [root@localhost ~]# truncate -s +200k file.txt [root@localhost ~]# ll -h file.txt -rw-r--r--. 1 root root 201K Nov 4 18:47 file.txt
透過新增額外的200K,這會將檔案大小從1K擴充套件到201K。
假設有一個500K的檔案,並且希望將其縮小到250K。將使用-s選項,在數字前面加上
-
[root@localhost ~]# touch file.txt [root@localhost ~]# truncate -s 500k file.txt [root@localhost ~]# ll -h total 4.0K -rw-------. 1 root root 1.3K Dec 29 2019 anaconda-ks.cfg -rw-r--r--. 1 root root 500K Nov 5 08:36 file.txt drwxr-xr-x. 5 root root 107 Nov 4 18:22 test [root@localhost ~]# truncate -s -250k file.txt [root@localhost ~]# ll -h total 4.0K -rw-------. 1 root root 1.3K Dec 29 2019 anaconda-ks.cfg -rw-r--r--. 1 root root 250K Nov 5 08:36 file.txt drwxr-xr-x. 5 root root 107 Nov 4 18:22 test
可以看到當前大小更改為250K。
Truncate命令通常用於將檔案縮小或擴充套件到指定的大小。如果檔案大於指定的大小,則會丟失額外的資料。如果檔案較短,則會對其進行擴充套件,並且擴充套件部分的讀數為零位元組。
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2738955/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- truncate 命令使用
- 【Linux之truncate 命令用法】Linux
- 如何在 Linux 中安裝和使用 duf 命令Linux
- 如何在Linux中使用awk命令Linux
- 如何在 Linux 命令列中切換使用者Linux命令列
- Linux中Type命令如何使用Linux
- Linux 中如何使用 id 命令Linux
- Linux中如何使用alias命令Linux
- 如何在Linux中如何限制對su命令的訪問Linux
- 如何在 Linux 上使用 dnf 命令安裝軟體包?Linux
- Linux中printf命令使用例項Linux
- 在 Linux中find命令使用技巧Linux
- linux中xargs命令的使用方式Linux
- Linux中source命令的使用方式Linux
- 如何在 Linux 命令列操作 PDFLinux命令列
- 如何在 Linux 中不輸入密碼執行 sudo 命令Linux密碼
- 如何在 Linux 終端中連線使用 WiFi?LinuxWiFi
- 如何在linux使用crontab命令定時重啟伺服器Linux伺服器
- 命令定時重啟伺服器如何在linux使用crontab伺服器Linux
- 如何在Linux上使用netstat命令查證DDOS攻擊Linux
- 如何在 Linux 中使用 Alpine 在命令列裡訪問 GmailLinux命令列AI
- Linux c程式中獲取shell指令碼輸出(如獲取system命令輸出)LinuxC程式指令碼
- Linux 中的 JQ 命令使用例項Linux
- Linux中ip命令的使用例項Linux
- Linux 中 ss 命令的使用例項Linux
- Linux中tail命令的使用詳解!LinuxAI
- Linux中的basename命令使用例項Linux
- linux中的top命令簡單使用Linux
- Linux中ps命令的簡單使用Linux
- linux中history命令的簡單使用Linux
- 如何在 Linux 中安裝、配置和使用 Fish Shell?Linux
- 如何在 Linux 中建立非登入使用者?Linux
- 在Linux中,如何在Linux中使用LXD進行容器管理?Linux
- 【Linux學習教程】Linux中Sed命令如何使用?Linux
- 使用 userdel 命令刪除 Linux 中的使用者Linux
- Linux中如何禁止普通使用者使用su命令Linux
- 在Linux中如何使用at命令安排任務Linux
- linux系統中xargs命令的使用方式Linux