相对路径、绝对路径、cd、mkdir、rm命令举例

时间:2022-09-14 17:44:41

一、相对和绝对路径

相对路径

相对当前目录位置的路径
[root@VM_46_188_centos /]# cd /usr/[root@VM_46_188_centos usr]# lsbin  etc  games  include  lib  lib64  libexec  local  sbin  share  src  tmp[root@VM_46_188_centos usr]#[root@VM_46_188_centos php]# lsbin  etc  include  lib  php

绝对路径

从根开始的路径
[root@VM_46_188_centos fxq]# [root@VM_46_188_centos network-scripts]# lsifcfg-eth0   ifdown-TeamPort  ifdown-ippp  ifdown-ppp     ifup           ifup-bnep  ifup-ipv6   ifup-post    ifup-tunnel        network-functions-ipv6ifcfg-lo     ifdown-bnep      ifdown-ipv6  ifdown-routes  ifup-Team      ifup-eth   ifup-isdn   ifup-ppp     ifup-wirelessifdown       ifdown-eth       ifdown-isdn  ifdown-sit     ifup-TeamPort  ifup-ib    ifup-plip   ifup-routes  init.ipv6-globalifdown-Team  ifdown-ib        ifdown-post  ifdown-tunnel  ifup-aliases   ifup-ippp  ifup-plusb  ifup-sit     network-functions[root@VM_46_188_centos network-scripts]#

二、 cd命令

cd 进入目录

cd - 进入上一次所在的目录

[root@VM_46_188_centos usr]# cd local/php/[root@VM_46_188_centos php]# lsbin  etc  include  lib  php[root@VM_46_188_centos php]#/usr[root@VM_46_188_centos usr]# pwd/usr[root@VM_46_188_centos usr]# cd -/usr/local/php

cd ~ 进入用户家目录

[root@VM_46_188_centos ~]# [root@VM_46_188_centos ~]# pwd/root[root@VM_46_188_centos ~]# [root@VM_46_188_centos ~]# pwd/root[root@VM_46_188_centos ~]#

cd .. 进入到上一级目录

[root@VM_46_188_centos ~]# pwd/root[root@VM_46_188_centos ~]# [root@VM_46_188_centos /]# pwd/[root@VM_46_188_centos /]#

三、创建和删除目录mkdir/rmdir

mkdir 创建目录

mkdir -p /tmp/fxq/1/2 一次创建一系列目录
[root@VM_46_188_centos /]# [root@VM_46_188_centos /]# cd /tmp/fxq[root@VM_46_188_centos fxq]# ls1 [root@VM_46_188_centos fxq]# cd 1/[root@VM_46_188_centos 1]# ls2[root@VM_46_188_centos 1]# tree /tmp/fxq/tmp/fxq`-- 1    `-- 22 directories, 0 files

rmdir 删除空目录

rmdir -p /tmp/fxq/1/2 级联删除目录

四、 rm命令

rm 删除文件

[root@VM_46_188_centos 1]# ls1.txt  2  test1[root@VM_46_188_centos 1]# rm: remove regular empty file '1.txt'?    [root@VM_46_188_centos 1]# ls2  test1[root@VM_46_188_centos 1]#

rm -r 删除目录

[root@VM_46_188_centos 1]# ls2  test1[root@VM_46_188_centos 1]#rm: remove directory '/tmp/fxq/1/2/'? [root@VM_46_188_centos 1]# lstest1[root@VM_46_188_centos 1]#

rm -rf 强制删除文件或目录

[root@VM_46_188_centos fxq]# tree.|-- 1|   |-- 1.txt|   `-- test1`-- 23 directories, 1 file[root@VM_46_188_centos fxq]# removed directory: '/tmp/fxq/1/test1'removed '/tmp/fxq/1/1.txt'removed directory: '/tmp/fxq/1/'[root@VM_46_188_centos fxq]#

-f 加上-f选项删除不存在的文件或目录时不提示信息。

[root@VM_46_188_centos ~]# cd /tmp/fxq[root@VM_46_188_centos fxq]# rm -rfv /tmp/fxq/1[root@VM_46_188_centos fxq]#


本文出自 “冯晓庆的博客” 博客,请务必保留此出处http://fengyunshan911.blog.51cto.com/995251/1954349