观天

linux绝对路径和相对路径的区别

绝对路径:在根目录写起,总是以斜线/字符开头 也就是全路径
相对路径:不在根路劲写起,任意目录写起,由一些 通配符在前面表示

绝对路径举例:cd /www/server/waf/html/

[root@localhost /]# cd /www/server/waf/html/
[root@localhost html]# ll
总用量 4
-rw-r--r--. 1 root root 1328 2月 23 06:36 get.html
[root@localhost html]# 

相对路径举例1:cd ../www/server/waf/html/

[root@localhost ~]#
[root@localhost ~]# pwd
/root
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]# cd ../www/server/waf/html/
[root@localhost html]#
[root@localhost html]#
[root@localhost html]# ls
get.html
[root@localhost html]#
[root@localhost html]# 

相对路径举例2: 比如我当前在html 目录下我要直接回到etc 目录   cd ../../../../etc/

[root@localhost html]# pwd
/www/server/waf/html
[root@localhost html]#
[root@localhost html]#
[root@localhost html]#
[root@localhost html]# cd ../../../../etc/
[root@localhost etc]#
[root@localhost etc]#

2020/02/23

赞(7)
未经允许不得转载:观天 » linux绝对路径和相对路径的区别