标签:strong soft bsp com arch tor nbsp cal pre
版权声明更新:2017-05-08
博主:LuckyAlan
联系:liuwenvip163@163.com
声明:吃水不忘挖井人,转载请注明出处!
本文介绍了Linux下命令cd。
Linux
无
pwd(print working directory)用于输出当前工作目录的绝对路径。我们在终端进行操作时,会有一个当前工作目录。 在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置。
命令格式: pwd [选项]
命令功能:查看当前工作目录的绝对路径。
一般情况下不带任何参数,如果目录是链接时可以使用:
1 pwd -P
显示出实际路径,而非使用连接(link)路径。
命令: pwd
输出:
1 [root@localhost ~]# pwd 2 /root 3 [root@localhost ~]#
命令: pwd
输出:
1 [root@localhost ~]# cd /opt/soft/ 2 [root@localhost soft]# pwd 3 /opt/soft 4 [root@localhost soft]#
目录连接链接时,pwd -P 显示出实际路径,而非使用连接(link)路径;pwd显示的是连接路径
命令: pwd -P
输出:
1 [root@localhost soft]# cd /etc/init.d 2 [root@localhost init.d]# pwd 3 /etc/init.d 4 [root@localhost init.d]# pwd -P 5 /etc/rc.d/init.d 6 [root@localhost init.d]#
命令: /bin/pwd [选项]
选项:
1 -L 目录连接链接时,输出连接路径 2 -P 输出物理路径
输出:
1 [root@localhost init.d]# /bin/pwd 2 /etc/rc.d/init.d 3 [root@localhost init.d]# /bin/pwd --help 4 [root@localhost init.d]# /bin/pwd -P 5 /etc/rc.d/init.d 6 [root@localhost init.d]# /bin/pwd -L 7 /etc/init.d 8 [root@localhost init.d]#
输出:
1 [root@localhost init.d]# /bin/pwd 2 /etc/rc.d/init.d 3 [root@localhost init.d]# /bin/pwd --help 4 [root@localhost init.d]# /bin/pwd -P 5 /etc/rc.d/init.d 6 [root@localhost init.d]# /bin/pwd -L 7 /etc/init.d 8 [root@localhost init.d]#
在4.3中,不太清楚什么什么是“目录连接链接”,由于除了4.3.1、4.3.2外,都没遇到过,因此暂时不深究,遇到以后再做学习。
1、本文概念部分参考了维基百科。
2、本文很大程度上是来自《每天一个linux命令(3):pwd命令》。
标签:strong soft bsp com arch tor nbsp cal pre
原文地址:http://www.cnblogs.com/luckyalan/p/6824329.html