Fork me on GitHub

pwd命令

摘要: pwd(print work directory 打印当前目录)命令以绝对路径的方式显示用户当前工作目录。

1、命令简介

pwd(print work directory 打印当前目录)命令以绝对路径的方式显示用户当前工作目录。

2、用法

1
pwd [-LP]

3、选项

1
2
-L --logical 当目录为连接路径时,显示连接路径
-P --physical 显示实际物理路径,而非使用连接(link)路径

4、实例

4.1 显示当前目录所在路径 pwd

1
2
[root@cent6 ~]# pwd
/root

4.2 显示当前目录的物理路径 pwd –P

1
2
3
[root@cent6 ~]# cd /etc/init.d
[root@cent6 init.d]# pwd -P
/etc/rc.d/init.d

4.3 显示当前目录的连接路径:pwd -L

1
2
3
[root@cent6 init.d]# cd /etc/init.d
[root@cent6 init.d]# pwd -L
/etc/init.d
好记性不如烂笔头,生命不息,学习不止!

分享