标签:pwd命令
名称:pwd
用途:打印用户当前/工作目录
用法:pwd [option]
参数:
-L,--logical 目录连接链接时,输出连接路径
-P,--physical 输出物理路径
测试1:
[root@mycentos home]# pwd
/home
测试2:
创建目录的软连接
[root@mycentos home]# ln -s test ln_test
[root@mycentos home]# cd ln_test/
[root@mycentos ln_test]# pwd
/home/ln_test
[root@mycentos ln_test]# pwd -L #显示当前的路径
/home/ln_test
[root@mycentos ln_test]# pwd -P #显示物理路径
/home/test
标签:pwd命令
原文地址:http://hwj91.blog.51cto.com/9763975/1771975