Linux使用join a1來合併兩個檔案

2022-10-06 19:45:10 字數 460 閱讀 9899

要合併以下兩個檔案,一起合併在一起,合併到1.txt中

# 1.txt

jerry 20

alice 30

d**id 40

# 2.txt

jerry man

alice woman

d**id 40

合併的後的1.txt

jerry 20 man

alice 30 woman

dwww.cppcns.com**id 40

上面的檔案特點是有相同的,則合併,第二列缺少內容的。這個時候使用join -a1 1.txt 2.txt就可以很好的達到目的.

[root@host ~]# join -a1 1.txt 2.txt

jerry 20 man

alice 30 woman

d**id 40

www.cppcns.com

總結

Linux使用logrotate來切割日誌檔案

1.執行原理 logrotate預設情況下是通過anacron呼叫的,它每天只會被呼叫一次,也就是說乙個日誌檔案預設不會多次被處理 除非 f強制呼叫或者檔案大小超過指定值 大致呼叫流程如下 1 anacron每天去呼叫 etc cron.daily中的任務 包含logrotate 2 anacron...

使用SELECT 1 FROM Tab來提高效率

1.統計乙個表的總記錄數 select count 1 sum 1 from tab 解釋 select 1 from table 與select anycol 目的表集合中的任意一行 from table 與select from table 從作用上來說是沒有差別的,都是檢視是否有記錄,一般是作...

linux入門使用 1

1.通過遠端工具登陸到linux後,所在的位置是當前登入使用者的家目錄 home directory 2.家目錄的符號用 表示。3.linux的檔案系統是乙個樹結構。linux檔案系統的樹根成為根目錄,使用符號 表示。linux檔案系統中使用符號 表示上級目錄。linux檔案系統中使用符號 表示當前...