名称:pwd
用途:打印用户当前/工作目录
用法:pwd [option]
参数:
-L,--logical 目录连接链接时,输出连接路径
-P,--physical 输出物理路径
测试1:
[[email protected] home]# pwd
/home
测试2:
创建目录的软连接
[[email protected] home]# ln -s test ln_test
[[email protected] home]# cd ln_test/
[[email protected] ln_test]# pwd
/home/ln_test
[[email protected] ln_test]# pwd -L #显示当前的路径
/home/ln_test
[[email protected] ln_test]# pwd -P #显示物理路径
/home/test
时间: 2024-10-18 07:57:52