正文處理命令及tar命令

来源:http://www.cnblogs.com/chengnanlangzi/archive/2017/05/25/6905497.html
-Advertisement-
Play Games

使用cat命令進行文件的縱向合併,具體命令如下所示(註意:>代表將左邊命令的執行結果以覆蓋的方式放到右邊,>>代表將左邊命令的執行結果追加到右邊) 關於tar命令的一些用法: tar 命令用來將很多文件打包成一個單一的磁帶或者磁碟歸檔,並可從歸檔文件恢復出文件列表。當你需要發送大量文件時或者傳輸文件 ...


使用cat命令進行文件的縱向合併,具體命令如下所示(註意:>代表將左邊命令的執行結果以覆蓋的方式放到右邊,>>代表將左邊命令的執行結果追加到右邊)

關於tar命令的一些用法:

tar 命令用來將很多文件打包成一個單一的磁帶或者磁碟歸檔,並可從歸檔文件恢復出文件列表。當你需要發送大量文件時或者傳輸文件時非常有用。

tar 的語法:

# tar [options] file.tar file1 file2 .. .. ..

file.tar 是 tar 歸檔文件,而其他 file1 和 file2 等等是要被打包的文件。

例如我們有兩個文件 file1.txt 和 file2.txt

[root@localhost TAR]# ll
total 8
-rw-r--r--. 1 root root 2770 Feb  7 22:37 file1.txt
-rw-r--r--. 1 root root  887 Feb  7 22:38 file2.txt

tar 常用的使用場景

創建一個 tar 文件
語法:

# tar -cf archive.tar files .. ..

示例:

[root@localhost TAR]# tar -cf file.tar file1.txt file2.txt
[root@localhost TAR]# ll file.tar 
-rw-r--r--. 1 root root 10240 Feb  7 22:42 file.tar

列出 tar 文件中的所有文件列表

# tar -tf archive.tar

示例:

[root@localhost TAR]# tar -tf file.tar 
file1.txt
file2.txt

從 tar 中提取所有文件

tar -xf archive.tar

示例

[root@localhost TAR]# tar -xf file.tar 
[root@localhost TAR]# ll
total 20
-rw-r--r--. 1 root root  2770 Feb  7 22:37 file1.txt
-rw-r--r--. 1 root root   887 Feb  7 22:38 file2.txt
-rw-r--r--. 1 root root 10240 Feb  7 22:42 file.tar

參數選項

1, -v, –verbose
verbosely list files processed:
Syntax:
List all files in an archive.tar verbosely:

tar -tvf archive.tar

Example:

[root@localhost TAR]# tar -tvf file.tar 
-rw-r--r-- root/root      2770 2014-02-07 22:37 file1.txt
-rw-r--r-- root/root       887 2014-02-07 22:38 file2.txt

2, -c, –create
創建新的歸檔文件

3, -t, –list
列出歸檔文件中的內容

4, -x, –extract, –get
從歸檔中提取文件

5, -d, –diff, –compare
比較歸檔和文件系統的差異
Example:

[root@localhost TAR]# tar -tf file.tar 
file2.txt
file3.txt
file1.txt
[root@localhost TAR]# tar -df file.tar file1.txt file2.txt file4.txt
tar: file4.txt: Not found in archive
tar: Exiting with failure status due to previous errors
----Verbosely----
[root@localhost TAR]# tar -dvf file.tar file1.txt file2.txt 
file2.txt
file1.txt
[root@localhost TAR]# tar -dvf file.tar file1.txt file2.txt file6.txt
file2.txt
file1.txt
tar: file6.txt: Not found in archive
tar: Exiting with failure status due to previous errors

6, –delete
從歸檔中刪除某文件
示例:
從歸檔 file.tar 中刪除 file1.txt

[root@localhost TAR]# tar --delete -f  file.tar  file1.txt 
[root@localhost TAR]# tar -tf file.tar
file2.txt

7, -r, –append
追加文件到歸檔中
示例:
追加 file3.txt 到 file.tar

[root@localhost TAR]# tar -rf file.tar file3.txt
[root@localhost TAR]# tar -tf file.tar
file1.txt
file2.txt
file3.txt

8, -A, –catenate, –concatenate
將一個tar 歸檔追加到另外一個歸檔文件中
創建另外一個 tar 文件

[root@localhost TAR]# tar -cf archive.tar file1.txt file3.txt

追加方法:

[root@localhost TAR]# tar -Af file.tar archive.tar
[root@localhost TAR]# tar -tf file.tar 
file2.txt
file3.txt
file1.txt
file1.txt
file3.txt

9, –test-label
測試歸檔卷標並退出

10, -u, –update
只追加最新的文件
示例:

[root@localhost TAR]# tar -tf file.tar 
file1.txt
file2.txt
[root@localhost TAR]# tar -uf file.tar file1.txt file3.txt file2.txt
[root@localhost TAR]# tar -tf file.tar 
file1.txt
file2.txt
file3.txt

11, -C, –directory=DIR
更改目錄到 DIR

例如:
提取文件到另外一個目錄

[root@localhost TAR]# tar -xvf file.tar -C /root/TAR2
file1.txt
file2.txt
[root@localhost TAR]# cd -
/root/TAR2
[root@localhost TAR2]# ll
total 28
-rw-r--r--. 1 root root 23250 Feb  7 23:11 file1.txt
-rw-r--r--. 1 root root   887 Feb  7 22:38 file2.txt

12, -p, –preserve-permissions
抽取文件時保留原有的文件許可權

壓縮歸檔文件,使用 BZIP 和 GZIP 兩種方法

跟壓縮相關的參數

13, -j, –bzip2
使用 bzip2 對歸檔進行壓縮

示例:

[root@localhost TAR]# tar -jcf file.tar.bz file2.txt file1.txt
[root@localhost TAR]# ll
total 128
-rw-r--r--. 1 root root 23250 Feb  7 23:11 file1.txt
-rw-r--r--. 1 root root   887 Feb  7 22:38 file2.txt
-rw-r--r--. 1 root root 30720 Feb  7 23:30 file.tar
-rw-r--r--. 1 root root  1797 Feb  7 23:42 file.tar.bz

請看,上面的文件大小通過 BZIP 降低到 1797 位元組。

14, -z, –gzip
使用 gzip 壓縮歸檔

示例:

[root@localhost TAR]# tar -zcf file.tar.gz file2.txt file1.txt
[root@localhost TAR]# ll
total 132
-rw-r--r--. 1 root root 23250 Feb  7 23:11 file1.txt
-rw-r--r--. 1 root root   887 Feb  7 22:38 file2.txt
-rw-r--r--. 1 root root 30720 Feb  7 23:30 file.tar
-rw-r--r--. 1 root root  1797 Feb  7 23:42 file.tar.bz
-rw-r--r--. 1 root root  1673 Feb  7 23:45 file.tar.gz

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 接著前面的寫 選擇特殊的列 舉個慄子:我想給這些pet們過身日,我就要知道pet們的名字和他們的生日。我該怎麼辦? 操作如下: SELECT name, birth FROM pet; mysql> SELECT name, birth -> FROM pet;+ + +| name | birth ...
  • 從表檢索信息 在前面,我, 創建了一個資料庫test 進入資料庫 創建了一個表pet 插入了一些數據。那麼問題來了,我要是想要瞅一瞅我的表中的數據腫麽辦呢?莫著急,待我一一道來 SELECT語句 語句的一般格式: SELECT what_to_select FROM which_table WHER ...
  • 首先打開navicat,選擇數據傳輸。 你可以選擇一個表或者多個表,然後開始傳輸。 如果出現下圖的問題,則是時間精度不一致 解決方案,則是將數據轉換成文件存儲例如:device.sql,然後將文件中時間精度7改成6,然後執行語句即可。 insert語句直接執行,工具已經幫我們把to_date轉換成m ...
  • 背景簡介: Oracle版本:11.2.0.4 OS 版本:OEL5.8 在一次Oracle的Dataguard正常switchover過程中,遇到了一個極其詭異的問題,一條主業務的SQL語句在新主庫的執行時間由之前的毫秒級別完成變成了20-60秒不等,為避免高峰業務超時必須儘快進行優化,否則只能走 ...
  • Mysql是不區分大小寫 要求伺服器告訴他的版本號 SELECT VERSION(); mysql> SELECT VERSION();+ +| VERSION() |+ +| 5.7.18 |+ +1 row in set (0.09 sec) mysql> 當前時間 SELECT CURRENT ...
  • 方法一:用SUM統計 前提:查詢的數據表中需要有統計數量的字串; 語法: SELECT SUM(CASE WHEN MONTH(StartTime) =1 THEN Quantity ELSE 0 END) '1', SUM(CASE WHEN MONTH(StartTime) =2 THEN Qu ...
  • socket筆記 socket類型 socket函數 ...
  • The post shows you how to remove a specified service entry from the win10 service list. ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...