Linux命令學習筆記(七) 檢視檔案

2021-08-21 03:40:54 字數 1469 閱讀 7340

[ftt@localhost ~]$file *

公共: directory

模板: directory

: directory

文件: directory

**: directory

桌面: directory

[ftt@localhost 文件]$ cat test.txt //cat是concatenate(拼接)的縮寫,用來顯示檔案內容

[ftt@localhost 文件]$ cat test1

abcd

[ftt@localhost 文件]$ cat test2

efg[ftt@localhost 文件]$ cat test1 test2 //cat可以顯示多個檔案

abcd

efg[ftt@localhost 文件]$ cat test1 test2 > test3

//cat 可以把多個檔案顯示到stdout,並把連線成的內容儲存到另乙個檔案

[ftt@localhost 文件]$ cat test3

abcd

efg[ftt@localhost 文件]$ cat -n test1 test2 >>test3 //n(number)生成行號

[ftt@localhost 文件]$ cat test3

abcd

efg1    abcd

2    efg

3    

[ftt@localhost 文件]$ ls --color | less //less用來顯示多頁內容

less 顯示內容後,長按v,可對檔案進行編輯

另一種方法是在less之前,輸入export editor=vim

[ftt@localhost 文件]$ head test1 //顯示單個檔案的前10行

abcd

[ftt@localhost 文件]$ head test1 test2 //顯示多個檔案的前10行

==> test1 <==

abcd

==> test2 <==

efg[ftt@localhost 文件]$ head -n 2 test3 //head -n 後面加數字顯示乙個或多個檔案前n行

abcd

efgtail與head相反,顯示檔案後面的內容,tail 乙個或多個檔名;tail -n 乙個或多個檔名

[ftt@localhost 文件]$ head -c 7 test3 //顯示檔案前容量為byte/kb/mb/gb/tb/pb/eb的內容

abcd

eftail -f//可以檢視乙個或多個檔案中經常更新的最後幾行內容

Linux學習筆記七檔案搜尋命令(二)

locate 命令名稱 locate 命令所在路徑 usr bin locate 執行許可權 所有使用者 語法 locate 檔名 功能描述 在檔案資料庫中查詢檔案 updatedb命令可以更新檔案資料庫 示例 剛建立的檔案如果沒有收錄到檔案資料庫,通過locate命令不能查詢到檔案,先用updat...

LINUX學習筆記(七)

一 檢視虛擬機器ip 二 遠端連線另一台虛擬機器 ssh為secure shell 的縮寫,是應用層的安全協議。ssh是目前較可靠,專為遠端登入會話和其他網路服務提供安全性的協議。利用ssh協議可以有效防止遠端管理過程中的資訊洩露問題。具體操作如下圖所示 其中172.25.150.23為另一台虛擬機...

每天學習乙個linux命令 more檢視文件

執行環境 ubuntu 16.04.6 lts usage more options a file perusal filter for crt viewing.options d display help instead of ringing bell d 提示使用者,在畫面下方顯示 press ...