咱們知道Linux的目錄結構爲樹狀結構,最頂級的目錄爲根目錄 /redis
其餘目錄經過掛載能夠將它們添加到樹中,經過解除掛載能夠移除它們。centos
咱們須要先知道什麼是絕對路徑與相對路徑。bash
絕對路徑:
路徑的寫法,由根目錄 / 寫起,例如: /usr/share/doc 這個目錄。less
相對路徑:
路徑的寫法,不是由 / 寫起,例如由 /usr/share/doc 要到 /usr/share/man 底下時,能夠寫成: cd ../man 這就是相對路徑的寫法測試
接下來咱們就來看幾個常見的處理目錄的命令吧:centos7
你可使用 man [命令] 來查看各個命令的使用文檔,如 :man ls。spa
在Linux系統當中, ls 命令多是最常被運行的。code
語法:orm
[root@bogon ~]# ls [-aAdfFhilnrRSt] 目錄名稱 [root@bogon ~]# ls [--color={never,auto,always}] 目錄名稱 [root@bogon ~]# ls [--full-time] 目錄名稱
選項與參數:blog
將~目錄(即root目錄)下的全部文件列出來(含屬性與隱藏文檔)
[root@bogon ~]# ls -al ~
cd是Change Directory的縮寫,這是用來變換工做目錄的命令。
語法:
cd [相對路徑或絕對路徑]
測試
#使用 mkdir 命令建立 testdir 目錄 [root@bogon ~]# mkdir testdir #使用絕對路徑切換到 testdir 目錄 [root@bogon ~]# cd /root/testdir/ #使用相對路徑切換到 testdir 目錄 [root@bogon ~]# cd ./testdir/ # 表示回到本身的家目錄,亦便是 /root 這個目錄 [root@bogon testdir]# cd ~ # 表示去到目前的上一級目錄,亦便是 /root 的上一級目錄的意思; [root@bogon ~]# cd ..
pwd 是 Print Working Directory 的縮寫,也就是顯示目前所在目錄的命令。
[root@bogon ~]# pwd [-P]
選項與參數:
例:
[root@bogon ~]# pwd
/root
連結路徑實例:
[root@bogon /]# cd var [root@bogon var]# cd mail [root@bogon mail]# pwd /var/mail [root@bogon mail]# pwd -P /var/spool/mail
爲何使用 pwd 與 pwd -P獲得的路徑不一樣呢 咱們可使用ls -l 查看一下
[root@bogon mail]# cd .. [root@bogon var]# ls -l 總用量 12 drwxr-xr-x. 2 root root 19 6月 6 21:36 account drwxr-xr-x. 2 root root 6 4月 11 2018 adm drwxr-xr-x. 13 root root 159 6月 6 21:54 cache drwxr-xr-x. 2 root root 6 11月 5 2018 crash drwxr-xr-x. 3 root root 34 6月 6 15:19 db drwxr-xr-x. 3 root root 18 6月 6 21:36 empty drwxr-xr-x. 2 root root 6 4月 11 2018 games drwxr-xr-x. 2 root root 6 4月 11 2018 gopher drwxr-xr-x. 3 root root 18 6月 6 21:31 kerberos drwxr-xr-x. 61 root root 4096 6月 6 21:54 lib drwxr-xr-x. 2 root root 6 4月 11 2018 local lrwxrwxrwx. 1 root root 11 6月 6 21:30 lock -> ../run/lock drwxr-xr-x. 20 root root 4096 6月 16 12:18 log lrwxrwxrwx. 1 root root 10 6月 6 21:30 mail -> spool/mail drwxr-xr-x. 2 root root 6 4月 11 2018 nis drwxr-xr-x. 2 root root 6 4月 11 2018 opt drwxr-xr-x. 2 root root 6 4月 11 2018 preserve lrwxrwxrwx. 1 root root 6 6月 6 21:30 run -> ../run drwxr-xr-x. 12 root root 140 6月 6 21:36 spool drwxr-xr-x. 4 root root 28 6月 6 21:32 target drwxrwxrwt. 10 root root 4096 6月 16 12:11 tmp drwxr-xr-x. 2 root root 6 4月 11 2018 yp
咱們能夠看到其中的 lrwxrwxrwx. 1 root root 10 6月 6 21:30 mail -> spool/mail
所以能夠知道/var/mail 是連結檔,連結到 /var/spool/mail
加上 pwd -P 的選項後,會不以連結檔的數據顯示,而是顯示正確的完整路徑
若是想要建立新的目錄的話,那麼就使用mkdir (make directory)吧。
語法:
mkdir [-mp] 目錄名稱
選項與參數:
實例:請到/tmp底下嘗試建立數個新目錄看看:
[root@bogon var]# cd /tmp [root@bogon tmp]# mkdir test [root@bogon tmp]# mkdir test1/test2/test3/test4 mkdir: 沒法建立目錄"test1/test2/test3/test4": 沒有那個文件或目錄 [root@bogon tmp]# mkdir -p test1/test2/test3/test4 //建立成功 加上-p參數就能夠直接建立多層目錄
實例:使用-m參數建立權限爲 rwx--x--x 的目錄。
[root@bogon tmp]# mkdir -m 711 test2
[root@bogon tmp]# ls -l
...
drwxr-xr-x. 2 root root 6 6月 16 15:20 test drwxr-xr-x. 3 root root 19 6月 16 15:20 test1 drwx--x--x. 2 root root 6 6月 16 15:25 test2
若是沒有加上 -m 來強制配置屬性,系統會使用默認屬性。
語法:
rmdir [-p] 目錄名稱
選項與參數:
例如刪除 ~中的testdir目錄
[root@bogon /]# rmdir /root/testdir //成功
//或者寫
[root@bogon /]# rmdir ~/testdir
咱們還可使用-p參數將 剛剛在mkdir 實例中建立的目錄(/tmp 底下)刪除掉
[root@bogon tmp]# rmdir test [root@bogon tmp]# rmdir test2 [root@bogon tmp]# rmdir test1 rmdir: 刪除 "test1" 失敗: 目錄非空 [root@bogon tmp]# rmdir -p test1/test2/test3/test4 //這時才能夠徹底刪除test1
注意的是,這個 rmdir 僅能刪除空的目錄,你可使用 rm 命令來刪除非空目錄。
cp 即拷貝文件和目錄。
語法:
[root@bogon ~]# cp [-adfilprsu] 來源檔(source) 目標檔(destination) [root@bogon ~]# cp [options] source1 source2 source3 .... directory
選項與參數:
-a:至關於 -pdr 的意思,至於 pdr 請參考下列說明;(經常使用)
-d:若來源檔爲連結檔的屬性(link file),則複製連結檔屬性而非文件自己;
-f:爲強制(force)的意思,若目標文件已經存在且沒法開啓,則移除後再嘗試一次;
-i:若目標檔(destination)已經存在時,在覆蓋時會先詢問動做的進行(經常使用)
-l:進行硬式連結(hard link)的連結檔建立,而非複製文件自己;
-p:連同文件的屬性一塊兒複製過去,而非使用默認屬性(備份經常使用);
-r:遞歸持續複製,用於目錄的複製行爲;(經常使用)
-s:複製成爲符號連結檔 (symbolic link),亦即『捷徑』文件;
-u:若 destination 比 source 舊才升級 destination !
實例:用 root 身份,將 root 目錄下的 .bashrc 複製到 /tmp 下,並命名爲 bashrc
[root@bogon ~]# cp ~/.bashrc /tmp/bashrc [root@bogon ~]# cp -i ~/.bashrc /tmp/bashrc cp:是否覆蓋"/tmp/bashrc"? n
上面代碼中咱們第二次複製添加 i 參數 此時若是目標地址中已有同名文件,則會詢問是否覆蓋
但是我使用的centos7中發現即便不加 i 也會詢問。。
[root@bogon tmp]# cp ~/.bashrc /tmp/bashrc cp:是否覆蓋"/tmp/bashrc"? n
語法:
rm [-fir] 文件或目錄
選項與參數:
將剛剛在 cp 的實例中建立的 bashrc 刪除掉:
[root@bogon tmp]# rm -i bashrc rm:是否刪除普通文件 "bashrc"?y
加上 -i 的選項就會主動詢問,避免你刪除到錯誤的檔名
語法:
[root@www ~]# mv [-fiu] source destination [root@www ~]# mv [options] source1 source2 source3 .... directory
選項與參數:
複製一文件,建立一目錄,將文件移動到目錄中
[root@bogon tmp]# cp ~/.bashrc /tmp/bashrc [root@bogon tmp]# mkdir mvtest [root@bogon tmp]# mv bashrc mvtest [root@bogon tmp]# cd mvtest [root@bogon mvtest]# ls //驗證是否成功 bashrc
將剛剛的目錄名稱改名爲 mvtest2
[root@bogon tmp]# mv mvtest mvtest2
Linux系統中使用如下命令來查看文件的內容:
咱們可使用 man [命令]來查看各個命令的使用文檔,如 :man cat
由第一行開始顯示文件內容
語法:
cat [-AbEnTv]
選項與參數:
檢看 /etc/issue 這個文件的內容:
[root@bogon ~]# cat /etc/issue \S Kernel \r on an \m
tac與cat命令恰好相反,文件內容從最後一行開始顯示,能夠看出 tac 是 cat 的倒着寫!
[root@bogon ~]# tac /etc/issue Kernel \r on an \m \S
顯示行號
語法:
nl [-bnw] 文件
選項與參數:
-b :指定行號指定的方式,主要有兩種:
-b a :表示不管是否爲空行,也一樣列出行號(相似 cat -n);
-b t :若是有空行,空的那一行不要列出行號(默認值);
-n :列出行號表示的方法,主要有三種:
-n ln :行號在熒幕的最左方顯示;
-n rn :行號在本身欄位的最右方顯示,且不加 0 ;
-n rz :行號在本身欄位的最右方顯示,且加 0 ;
-w :行號欄位的佔用的位數。
如用 nl 列出 /etc/issue 的內容:
[root@bogon ~]# nl /etc/issue 1 \S 2 Kernel \r on an \m
一頁一頁翻動 例如 /root/anaconda-ks.cfg這個文件
[root@bogon /]# more /root/anaconda-ks.cfg #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use graphical install graphical # Run the Setup Agent on first boot firstboot --enable ignoredisk --only-use=sda # Keyboard layouts keyboard --vckeymap=cn --xlayouts='cn' # System language lang zh_CN.UTF-8 # Network information network --bootproto=dhcp --device=ens33 --onboot=off --ipv6=auto -- --More--(24%) <== 重點在這一行!光標會在這裏等待你的命令
在 more 這個程序的運行過程當中,你有幾個按鍵能夠按的:
與more相似 命令不一樣 以下
less運行時能夠輸入的命令有:
取出文件前面幾行
語法:
head [-n number] 文件
選項與參數:
例如命令:
[root@bogon ~]# head /root/anaconda-ks.cfg #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom # Use graphical install graphical # Run the Setup Agent on first boot firstboot --enable ignoredisk --only-use=sda
默認的狀況中,顯示前面 10 行!若要顯示前 20 行,就得要這樣:
[root@bogon ~]# head -n 20 /root/anaconda-ks.cfg
取出文件後面幾行
語法:
tail [-n number] 文件
選項與參數:
例如:
[root@bogon ~]# tail /root/anaconda-ks.cfg
一樣默認也是取出10行,若要顯示最後的 20 行,就得要這樣:
[root@bogon ~]# tail -n 20 /root/anaconda-ks.cfg