linux檔案目錄指令有:1、ls,用來列出目錄及檔名;2、cd,用來切換目錄;3、pwd,用來顯示目前的目錄;4、mkdir,用於建立新目錄;5、rmdir,用於刪除空目錄;6、cp,用於複製檔案或目錄;7、rm,用於刪除檔案或目錄等。
本教學操作環境:linux5.9.8系統、Dell G3電腦。
處理檔案和目錄的常用指令
#接下來我們就來看幾個常見的處理目錄的指令吧:
你可以使用man [指令] 來檢視各個指令的使用文檔,如:man cp。
在Linux系統當中, ls 指令可能是最常被執行的。
語法:
[root@www ~]# ls [-aAdfFhilnrRSt] 目录名称 [root@www ~]# ls [--color={never,auto,always}] 目录名称 [root@www ~]# ls [--full-time] 目录名称
選項與參數:
將家目錄下的所有檔案列出來(含屬性與隱藏檔)
[root@www ~]# ls -al ~
cd是Change Directory的縮寫,這是用來變換工作目錄的指令。
語法:
cd [相对路径或绝对路径]
#使用 mkdir 命令创建 runoob 目录 [root@www ~]# mkdir runoob #使用绝对路径切换到 runoob 目录 [root@www ~]# cd /root/runoob/ #使用相对路径切换到 runoob 目录 [root@www ~]# cd ./runoob/ # 表示回到自己的家目录,亦即是 /root 这个目录 [root@www runoob]# cd ~ # 表示去到目前的上一级目录,亦即是 /root 的上一级目录的意思; [root@www ~]# cd ..
接下來大家多操作幾次應該就可以很好的理解 cd 指令的。
pwd 是 Print Working Directory 的縮寫,也就是顯示目前所在目錄的指令。
[root@www ~]# pwd [-P]
選項與參數:
實例:單純顯示出目前的工作目錄:
[root@www ~]# pwd /root <== 显示出目录啦~
實例顯示出實際的工作目錄,而非連結檔本身的目錄名稱而已。
[root@www ~]# cd /var/mail <==注意,/var/mail是一个连结档 [root@www mail]# pwd /var/mail <==列出目前的工作目录 [root@www mail]# pwd -P /var/spool/mail <==怎么回事?有没有加 -P 差很多~ [root@www mail]# ls -ld /var/mail lrwxrwxrwx 1 root root 10 Sep 4 17:54 /var/mail -> spool/mail # 看到这里应该知道为啥了吧?因为 /var/mail 是连结档,连结到 /var/spool/mail # 所以,加上 pwd -P 的选项后,会不以连结档的数据显示,而是显示正确的完整路径啊!
如果想要建立新的目錄的話,那麼就使用mkdir (make directory)。
語法:
mkdir [-mp] 目录名称
選項與參數:
實例:請到/tmp底下嘗試建立數個新目錄看看:
[root@www ~]# cd /tmp [root@www tmp]# mkdir test <==创建一名为 test 的新目录 [root@www tmp]# mkdir test1/test2/test3/test4 mkdir: cannot create directory `test1/test2/test3/test4': No such file or directory <== 没办法直接创建此目录啊! [root@www tmp]# mkdir -p test1/test2/test3/test4
加了這個 -p 的選項,可以自行幫你建立多層目錄!
實例:建立權限為 rwx--x--x 的目錄。
[root@www tmp]# mkdir -m 711 test2 [root@www tmp]# ls -l drwxr-xr-x 3 root root 4096 Jul 18 12:50 test drwxr-xr-x 3 root root 4096 Jul 18 12:53 test1 drwx--x--x 2 root root 4096 Jul 18 12:54 test2
上面的權限部分,如果沒有加上 -m 來強製配置屬性,系統會使用預設屬性。
如果我們使用 -m ,如上例我們給予 -m 711 來給予新的目錄 drwx--x--x 的權限。
語法:
rmdir [-p] 目录名称
選項與參數:
刪除runoob 目錄
[root@www tmp]# rmdir runoob/
[root@www tmp]# ls -l <==看看有多少目录存在? drwxr-xr-x 3 root root 4096 Jul 18 12:50 test drwxr-xr-x 3 root root 4096 Jul 18 12:53 test1 drwx--x--x 2 root root 4096 Jul 18 12:54 test2 [root@www tmp]# rmdir test <==可直接删除掉,没问题 [root@www tmp]# rmdir test1 <==因为尚有内容,所以无法删除! rmdir: `test1': Directory not empty [root@www tmp]# rmdir -p test1/test2/test3/test4 [root@www tmp]# ls -l <==您看看,底下的输出中test与test1不见了! drwx--x--x 2 root root 4096 Jul 18 12:54 test2
利用 -p 這個選項,立刻就可以將 test1/test2/test3/test4 一次刪除。 不過要注意的是,這個 rmdir 只能刪除空的目錄,你可以使用 rm 指令來刪除非空目錄。
cp 即拷貝檔案和目錄。
[root@www ~]# cp [-adfilprsu] 来源档(source) 目标档(destination) [root@www ~]# cp [options] source1 source2 source3 .... directory
選項與參數:
相當於-pdr 的意思,至於pdr 請參考下列說明;(常用)
若來源檔為連結檔的屬性(link file),則複製連結檔屬性而非檔案本身;
為強制(force)的意思,若目標檔案已經存在且無法開啟,則移除後再嘗試一次;
######-i:###若目標檔(destination)已經存在時,在覆寫時會先詢問動作的進行(常用)########## #####-l:###進行硬式連結(hard link)的連結檔創建,而非複製檔案本身;###############-p:###連同檔案的屬性一起複製過去,而非使用預設屬性(備份常用);################-r:###遞歸持續複製,用於目錄的複製行為; (常用)###-s:复制成为符号连结档 (symbolic link),亦即『捷径』文件;
-u:若 destination 比 source 旧才升级 destination !
用 root 身份,将 root 目录下的 .bashrc 复制到 /tmp 下,并命名为 bashrc
[root@www ~]# cp ~/.bashrc /tmp/bashrc [root@www ~]# cp -i ~/.bashrc /tmp/bashrc cp: overwrite `/tmp/bashrc'? n <==n不覆盖,y为覆盖
语法:
rm [-fir] 文件或目录
选项与参数:
将刚刚在 cp 的实例中创建的 bashrc 删除掉!
[root@www tmp]# rm -i bashrc rm: remove regular file `bashrc'? y
如果加上 -i 的选项就会主动询问喔,避免你删除到错误的档名!
语法:
[root@www ~]# mv [-fiu] source destination [root@www ~]# mv [options] source1 source2 source3 .... directory
选项与参数:
复制一文件,创建一目录,将文件移动到目录中
[root@www ~]# cd /tmp [root@www tmp]# cp ~/.bashrc bashrc [root@www tmp]# mkdir mvtest [root@www tmp]# mv bashrc mvtest
将某个文件移动到某个目录去,就是这样做!
将刚刚的目录名称更名为 mvtest2
[root@www tmp]# mv mvtest mvtest2
Linux系统中使用以下命令来查看文件的内容:
你可以使用 man [命令]来查看各个命令的使用文档,如 :man cp。
由第一行开始显示文件内容
语法:
cat [-AbEnTv]
选项与参数:
检看 /etc/issue 这个文件的内容:
[root@www ~]# cat /etc/issue CentOS release 6.4 (Final) Kernel \r on an \m
tac与cat命令刚好相反,文件内容从最后一行开始显示,可以看出 tac 是 cat 的倒着写!如:
[root@www ~]# tac /etc/issue Kernel \r on an \m CentOS release 6.4 (Final)
显示行号
语法:
nl [-bnw] 文件
选项与参数:
实例一:用 nl 列出 /etc/issue 的内容
[root@www ~]# nl /etc/issue 1 CentOS release 6.4 (Final) 2 Kernel \r on an \m
一页一页翻动
[root@www ~]# more /etc/man_db.config # # Generated automatically from man.conf.in by the # configure script. # # man.conf from man-1.6d ....(中间省略).... --More--(28%) <== 重点在这一行喔!你的光标也会在这里等待你的命令
在 more 这个程序的运行过程中,你有几个按键可以按的:
一页一页翻动,以下实例输出/etc/man.config文件的内容:
[root@www ~]# less /etc/man.config # # Generated automatically from man.conf.in by the # configure script. # # man.conf from man-1.6d ....(中间省略).... : <== 这里可以等待你输入命令!
less运行时可以输入的命令有:
取出文件前面几行
语法:
head [-n number] 文件
选项与参数:
[root@www ~]# head /etc/man.config
默认的情况中,显示前面 10 行!若要显示前 20 行,就得要这样:
[root@www ~]# head -n 20 /etc/man.config
取出文件后面几行
语法:
tail [-n number] 文件
选项与参数:
[root@www ~]# tail /etc/man.config # 默认的情况中,显示最后的十行!若要显示最后的 20 行,就得要这样: [root@www ~]# tail -n 20 /etc/man.config
相关推荐:《Linux视频教程》
以上是linux檔案目錄指令是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!