檔案列印命令
lpr 將檔案傳送到印表機佇列
lpq 返回預設印表機的當前列印佇列
lpc 印表機控制功能
壓縮與解壓縮功能
tar1.將整個/root目錄打包到tmp/root.tar (只打包不壓縮)
tar -cvf /tmp/root.tar : /root
2.壓縮
tar -zcvf /tmp/root.tar.gz etc (以gzip壓縮打包檔案)
tar -jcvf /tmp/root.tar.bz2 etc (以bzip2壓縮打包檔案)
3.查閱打包內容
tar -tvf /tmp/root.tar
tar -ztvf /tmp/root.tar.gz
tar -jtvf /tmp/root.tar.bz2
4.解包
tar -xvf /tmp/root.tar
tar -zxvf /tmp/root.tar.gz
tar -jxvf /tmp/root.tar.bz2
檔案編輯命令
cmp 檔案比較命令
-l 顯示所有不一樣的地方
diff 比較檔案和資料夾的差異
split 切割檔案
grep 查詢檔案裡符合條件的字串
grep[-abcefghillnqrsvvwxy][範本樣式][檔案或資料夾]
wc 計算檔案字數
uniq 檢查及刪除文字檔案中重複出現的行列
-c 在每列旁邊顯示該行重複出現的次數
-d 僅顯示重複出現的行列
tr 轉換字元
tr 'a-z' 'a-z' < myfile-a > myfile-a 將大寫轉小寫
tr 'a-z' 'a-z' < myfile-b > myfile-b 將小寫轉大寫
file 辨識檔案型別
tee 讀取標準輸入的資料,並將其內容輸出成檔案
-a 追加而非覆蓋
cat slayers.story | tee ss-copy1 ss-copy2 複製兩份副本
touch 修改檔案的日期時間戳
-a 只更改訪問時間
-c 不建立任何檔案
-d 使用指定的日期時間
-m 只更改變動時間
-t 使用指定的時間而非現在的時間
-r《參考檔案或目錄》 設成參考檔案或目錄的時間
linux檔案操作命令
1.建立檔案 touch test.txt 建立檔案 echo this is a test test.txt 建立檔案並寫入內容 2.檢視檔案內容 cat cat test test.txt 檢視內容 cat n test test.txt 檢視內容並顯示行號 cat a test test.tx...
Linux檔案操作命令
檔案路徑操作 root localhosttest ls顯示當前目錄下的所有檔案及資料夾 root localhosttest ll以詳細方式顯示所有檔案與資料夾。相當於 ls l 命令 root localhosttest cd user 開啟user 資料夾 root localhosttest...
linux檔案操作命令
檔案操作命令 ls 顯示 ls a 顯示所有 包括隱藏 ls l 顯示詳細資訊 ls lh 同上,人性化顯示 ls ld etc 目錄的詳細資訊 ls i 檔案號 cd 切換到根目錄 cd.回到上一目錄 mkdir 建立空目錄 p 遞迴建立子目錄 cp r 原始檔或目錄 目的目錄 複製檔案或目錄 p...