目錄管理

DogLeftover發表於2024-04-30
  • 路徑
# 絕對路徑
/usr/share/doc
# 相對路徑
cd ../man
  • 檢視
ls -[ a | d | l ]
-a :全部的檔案,連同隱藏檔案( 開頭為 . 的檔案) 一起列出來(常用)
-d :僅列出目錄本身,而不是列出目錄內的檔案資料(常用)
-l :長資料串列出,包含檔案的屬性與許可權等等資料;(常用)

[root@localhost ~]# ls -al
  • 切換目錄
 cd [相對路徑或絕對路徑]

# 使用絕對路徑切換到 runoob 目錄
[root@localhost ~]# cd /root/runoob/

# 使用相對路徑切換到 runoob 目錄
[root@localhost ~]# cd ./runoob/
  • 顯示所在目錄
# -P :顯示出確實的路徑,而非使用連結 (link) 路徑
[root@localhost ~]# pwd [-P]
  • 建立目錄
mkdir [-mp] 目錄名稱
-m :配置檔案的許可權
-p :直接將所需要的目錄(包含上一級目錄)遞迴建立起來

[root@localhost tmp]# mkdir -m 711 test2
[root@localhost tmp]# mkdir -p test1/test2/test3/test4

相關文章