linux常用命令之查閱檔案

2021-07-12 07:17:17 字數 951 閱讀 5209

cat – concatenate print files 連續的輸出檔案內容

cat [-nba] file

tac – concatenate print files reverse 反序的檢視檔案

也是一頁一頁的翻動

比more的功能更強大

head – output the first part of files 輸出檔案的前幾行

head [-n number] file

head -n 5 demo.txt

輸出demo.txt的前五行

head -n -100 demo.txt

不輸出demo.txt的後100行

tail – output the last part of files 輸出檔案的後幾行

tail [-n number] file

which – locate a command 定位命令

which會在$path中查詢命令

whereis – locate the binary、shource and manual page files for a command

在$path中查詢指令的執行(二進位制)檔案、原始檔和操作手冊

預設:binary、shource and manual page都會顯示出來

locate – find files by name 查詢檔案

和which、whereis不同的是,locate不僅僅只在$path中查詢

查詢檔案

在硬碟中查詢

find filename [option] [action]

find / -size +500k -exec ls -l {} \;

在根目錄下以及根目錄的所有子目錄下,搜尋出大小大於500kb的檔案,並且列出詳細資訊

{}:代表find搜尋到的結果

\; :表示其他指令的結束

Linux常用命令之Linux常用命令實戰知識點

在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...

Linux常用命令之檔案處理命令

1 檔案命名規則 1 除了 之外,所有字元都合法 2 有些字元最好不要用,如空格符 製表符 字元 等 3 避免使用.作為普通檔名的第乙個字元。4 大小寫敏感 2 命令的格式 格式 命令 選項 引數 ex ls la etc ps 1 多個選項可以寫在一起 2 目錄的 和 當前目錄 當前目錄的父目錄 ...

Linux常用命令之檔案處理命令

命令格式 命令 選項 引數 例如 ls la etc 說明 1 個別命令使用不遵循此格式 2 當有多個選項時,可以寫在一起 3 簡化選項與完整選項 a等於 all 命令格式與目錄處理命令 ls 命令所在路徑 bin ls 執行許可權 所有使用者 功能描述 顯示目錄檔案 語法 ls 選項 ald 檔案...