写点什么

Linux pwd 命令

发布于: 2021 年 04 月 15 日
Linux pwd 命令

pwd 命令用来查看”当前工作目录“的完整路径,当不太确定当前位置时,可以使用 pwd 来判定当前目录在文件系统内的确切位置

命令格式

pwd [选项]
复制代码

参数

-P 显示出实际路径,而非使用连接(link)路径
复制代码

实例

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


[root@localhost soft]# cd /etc/init.d [root@localhost init.d]# pwd/etc/init.d[root@localhost init.d]# pwd -P/etc/rc.d/init.d[root@localhost init.d]#
复制代码


  1. /bin/pwd


  • 命令/bin/pwd [选项] (-L 目录连接链接时,输出连接路径| -P 输出物理路径)

  • 输出


[root@localhost init.d]# /bin/pwd /etc/rc.d/init.d[root@localhost init.d]# /bin/pwd --help[root@localhost init.d]# /bin/pwd -P/etc/rc.d/init.d[root@localhost init.d]# /bin/pwd -L/etc/init.d[root@localhost init.d]#
复制代码


  1. 当前目录被删除了,而 pwd 命令仍然显示那个目录


[root@localhost init.d]# cd /opt/soft[root@localhost soft]# mkdir removed[root@localhost soft]# cd removed/[root@localhost removed]# pwd/opt/soft/removed[root@localhost removed]# rm ../removed -rf[root@localhost removed]# pwd/opt/soft/removed[root@localhost removed]# /bin/pwd/bin/pwd: couldn't find directory entry in “..” with matching i-node[root@localhost removed]# cd [root@localhost ~]# pwd/root[root@localhost ~]#
复制代码


发布于: 2021 年 04 月 15 日阅读数: 9
用户头像

多读书多看报,少吃零食多睡觉 2018.08.07 加入

还未添加个人简介

评论

发布
暂无评论
Linux pwd 命令