Linux常用命令3:pwd

Posted chay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux常用命令3:pwd相关的知识,希望对你有一定的参考价值。

pwd命令简介

Linux中用pwd 命令来查看”当前工作目录“的完整路径。 简单得说,每当你在终端进行操作时,你都会有一个当前工作目录。 

在不太确定当前位置时,就会使用pwd来判定当前目录在文件系统内的确切位置。

命令格式

pwd [选项]

命令功能

查看”当前工作目录“的完整路径

常用参数

一般情况下不带任何参数

如果目录是链接时:

格式:pwd -P  显示出实际路径,而非使用连接(link)路径。 

常用实例

例1:用 pwd 命令查看默认工作目录的完整路径

命令:pwd 

输出:

[[email protected] ~]# pwd

/root

[[email protected] ~]#

例2:使用 pwd 命令查看指定文件夹

命令:pwd

输出:

[[email protected] ~]# cd /opt/soft/

[[email protected] soft]# pwd 

/opt/soft

[[email protected] soft]#

例3:目录连接链接时,pwd -P  显示出实际路径,而非使用连接(link)路径;pwd显示的是连接路径

命令:pwd -P

输出:

[[email protected] soft]# cd /etc/init.d 

[[email protected] init.d]# pwd

/etc/init.d

[[email protected] init.d]# pwd -P

/etc/rc.d/init.d

[[email protected] init.d]#

例5:/bin/pwd

命令:/bin/pwd [选项]

选项:

-L 目录连接链接时,输出连接路径

-P 输出物理路径

输出:

[[email protected] init.d]# /bin/pwd 

/etc/rc.d/init.d

[[email protected] init.d]# /bin/pwd --help

[[email protected] init.d]# /bin/pwd -P

/etc/rc.d/init.d

[[email protected] init.d]# /bin/pwd -L

/etc/init.d

[[email protected] init.d]#

例5:当前目录被删除了,而pwd命令仍然显示那个目录

 输出:

[[email protected] init.d]# cd /opt/soft

[[email protected] soft]# mkdir removed

[[email protected] soft]# cd removed/

[[email protected] removed]# pwd

/opt/soft/removed

[[email protected] removed]# rm ../removed -rf

[[email protected] removed]# pwd

/opt/soft/removed

[[email protected] removed]# /bin/pwd

/bin/pwd: couldn‘t find directory entry in “..” with matching i-node

[[email protected] removed]# cd 

[[email protected] ~]# pwd

/root

[[email protected] ~]#

以上是关于Linux常用命令3:pwd的主要内容,如果未能解决你的问题,请参考以下文章

Linux常用命令总结之pwd

linux每日命令:pwd命令

linux命令:pwd

转每天一个linux命令:pwd命令

Linux 命令(151)—— pwd 命令

[Linux]——常用命令(ls,pwd,cd,mkdir,touch,rm)