pwd與cd命令
>pwd命令是“print working directory”中每個(gè)單詞的首字母縮寫linux常用命令,其功能是顯示當(dāng)前工作目錄的絕對路徑。在實(shí)際工作中,我們在命令行操作命令時(shí)linux常用命令,經(jīng)常會在各個(gè)目錄路徑之間進(jìn)行切換,此時(shí)可使用pwd命令快速查看當(dāng)前我們所在的目錄路徑。
還有一個(gè) $PWD 環(huán)境變量,可以顯示當(dāng)前工作目錄的絕對路徑
ghostwu@dev:~$ echo $PWD /home/ghostwu ghostwu@dev:~$ cd ./php ghostwu@dev:~/php$ echo $PWD /home/ghostwu/php ghostwu@dev:~/php$ pwd /home/ghostwu/php ghostwu@dev:~/php$
ghostwu@dev:~$ pwd /home/ghostwu ghostwu@dev:~$ cd / ghostwu@dev:/$ pwd / ghostwu@dev:/$ ls bin dev initrd.img lost+found opt run srv usr boot etc lib media proc sbin sys var cdrom home lib64 mnt root snap tmp vmlinuz ghostwu@dev:/$ cd /etc/ ghostwu@dev:/etc$ cd ghostwu@dev:~$ cd - /etc ghostwu@dev:/etc$ cd ~ ghostwu@dev:~$ cd - /etc ghostwu@dev:/etc$ cd ../home/ghostwu/ ghostwu@dev:~$
cd命令是“change directory”中每個(gè)單詞的首字母縮寫,其功能是從當(dāng)前工作目錄切換到指定的工作目錄。
>切換到當(dāng)前目錄的上一級目錄(cd..)。
>切換到當(dāng)前目錄( cd . )。
>切換到家目錄( cd ~ ) ,cd不帶參數(shù) 也是切換到家目錄
>切換到剛才的目錄( cd - )
tree命令,查看目錄與文件的組織結(jié)構(gòu),默認(rèn)ubuntu沒有安裝tree
ghostwu@dev:~$ tree The program 'tree' is currently not installed. You can install it by typing: sudo apt install tree ghostwu@dev:~$ sudo apt install tree
ghostwu@dev:~$ tree . ├── Desktop ├── Documents ├── Downloads │?? ├── 1.rar │?? ├── 1 - 副本.pptx │?? ├── 2.rar │?? ├── 2 - 副本.pptx │?? ├── 3.rar ...............
tree -d: 只顯示目錄
tree -dL 2:L參數(shù)指定顯示的層級 2表示2層
tree -df:顯示完整路徑
tree -dfi: 不顯示樹狀層級結(jié)構(gòu)
tree -L 1 -F: F參數(shù)會在目錄后面加個(gè) /,作用:用來跟文件區(qū)分
上一個(gè)教程:Linux查看硬件常用命令
下一個(gè)教程:Linux常用指令整理