1、ls命令
命令功能:ls----list diertory contents 列舉目錄內(nèi)容,默認(rèn)顯示當(dāng)前目錄內(nèi)容
命令格式:ls [alhRrpFt] [dirName]..
常用參數(shù)解釋?zhuān)?a -----do not ignore entries starting with . 顯示目錄下所有內(nèi)容linux命令,包括以.開(kāi)頭的隱藏文件、.當(dāng)前目錄 ..上一級(jí)目錄
-l-------use a long listing format 列舉目錄內(nèi)容詳細(xì)屬性,包括目錄類(lèi)型、目錄權(quán)限、硬鏈接數(shù)、屬主、屬組、大小、最后一次修改時(shí)間、文件名
-h------with -l, print sizes in human readable format (e.g., 1K 234M 2G) 配合-l參數(shù)使用,以高可讀大小單位顯示目錄的大小屬性
-R-----list subdirectories recursively 遞歸顯示目錄下可見(jiàn)的文件、目錄及子目錄
-r------reverse order while sorting 反向排序
-t------sort by modification time 目錄顯示按照修改時(shí)間排序
-p-----append / indicator to directories 在目錄后添加/標(biāo)識(shí)符
-F-----append indicator (one of */=>@|) to entries 為不同類(lèi)型的目錄添加唯一標(biāo)識(shí)符
實(shí)例展示:
2、mkdir命令
命令功能:mkdir --make directories 創(chuàng)建目錄
命令格式:mkdir [-pv] directory...
常用參數(shù)解釋?zhuān)?p no error if existing, make parent directories as needed 遞歸創(chuàng)建多級(jí)目錄
-v print a message for each created directory 顯示目錄創(chuàng)建過(guò)程
實(shí)例展示:
3、pwd命令
命令功能:pwd------Print the name of the current working directory. 打印當(dāng)前工作目錄(以絕對(duì)路徑方式打印)
命令格式:pwd [-P|L]
常用參數(shù)解釋?zhuān)阂话闱闆r下,pwd命令不帶任何參數(shù),當(dāng)工作目錄是鏈接是:
-L ----link 顯示鏈接文件路徑
-P----physical 顯示鏈接目錄的實(shí)際物理路徑
實(shí)例展示:
4、cd命令
命令功能:cd------Change the current directory to DIR. The default DIR is the value of the HOME 切換當(dāng)前目錄到指定目錄linux命令,默認(rèn)切換到用戶(hù)的家目錄。
命令格式:cd [-L|-P] [dir]
常用參數(shù)解釋?zhuān)阂话闱闆r下,cd命令不帶任何參數(shù),和通配符.當(dāng)前目錄 .. 上一級(jí)目錄 -最近一次目錄 ~用戶(hù)的家目錄。當(dāng)目錄是鏈接是:
-L ----link 切換到鏈接文件目錄中
-P----physical 切換到實(shí)際物理路徑
實(shí)例展示:
5、rmdir命令
命令功能:rmdir----remove empty directories 刪除空目錄
命令格式:rmdir [-pv]... DIRECTORY...
命令參數(shù):-p ---remove DIRECTORY and its ancestors用于刪除多級(jí)空目錄
-v-----output a diagnostic for every directory processed 顯示處理過(guò)程信息