linux下列出目錄命令和vim快速入門
阿新 • • 發佈:2018-12-11
使用 “ls” 命令來列出目錄內容
相關引數
ls -a 顯示所有檔案
ls -l 顯示詳細資訊
ls -R 遞迴顯示子目錄結構
ls -ld 顯示目錄和連結資訊
通過file命令可以檢視檔案的型別
find查詢檔案
find支援很多種的查詢條件
-name 檔名
-perm 許可權
-user 使用者
-group 組
-ctime 修改的時間
-type 型別
-size 檔案的大小
命令locate用以快速查詢檔案,資料夾
locate weyword 此命令需要預先建立資料庫
命令find用於高階查詢檔案,資料夾:
find 查詢位置 查詢引數
如:
find .-name *wujie*
find /-name *.conf
find / -perm 777
find / -type d
歸檔壓縮
命令zip用以壓縮檔案
zip wujie.zip myfile
命令unzip用於壓縮包
unzip wujie.zip
命令gzip壓縮檔案
gzip wujie.net
命令tar用以歸檔檔案
tar -cvf out.tar wujie
tar -xvf wujie.tar
tar -cvzf backup.tar.gz /etc
-z引數將歸檔後的歸檔檔案進行gzip壓縮
vim文字編輯器的使用方法
i 在游標前插入文件
o 在當前行的下面插入新行
dd 刪除整行
yy 將當前行的內容放入快取區(複製當前行)
n+yy 將n行的內容放入快取區
p 將快取區的文字放入游標後(貼上)
u 撤銷上一個操作
r 替換當前字元
/ 查詢關鍵字