Linux命令之---pwd

Posted 浪漫De刺猬❥(^_-)

tags:

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

命令简介

Linux中用 pwd 命令用来查看”当前工作目录“的完整路径。

命令格式

pwd [选项]

命令功能和参数

功能:查看”当前工作目录“的完整路径;参数:一般情况下不带任何参数,如果目录是链接时:

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

常用实例

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

命令:pwd 

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

命令:pwd

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

[[email protected] soft]# pwd 

/opt/soft

[[email protected] soft]#
实例三:目录连接链接时,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]#
实例4:/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

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

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

[[email protected] soft]# mkdir ddd

[[email protected] soft]# cd ddd

[[email protected] ddd]# pwd

/opt/soft/ddd

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

[[email protected] ddd]# pwd

/opt/soft/ddd

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

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

[[email protected] ddd]# cd 

[[email protected] ~]# pwd

/root

  

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

Linux命令之---pwd

Linux常用命令总结之pwd

linux的基础命令之pwd和whoami

Linux命令之查看当前工作目录的绝对路径pwd

linux-11 基本命令之 -工作期目录切换命令-pwd,cd,

2020-05-17 linux命令之builtin