|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!pwd(PrintWorkingDirectory)
称号:pwd-printnameofcurrent/workingdirectory输出以后任务路径
语法:pwd[option]
参数:--help--version
实例:
1)显示以后任务路径
[root@localhost~]#pwd
/root
2)显示出软衔接的现实目次,而非应用软衔接的目次。参数CP
[root@localhostnetwork-scripts]#cd/etc/init.d
[root@localhostinit.d]#pwd
/etc/init.d
[root@localhostinit.d]#pwd-P
/etc/rc.d/init.d
3)pwd毛病显示曾经删除的目次
[root@localhostinit.d]#cd/opt/soft
[root@localhostsoft]#mkdirremoved
[root@localhostsoft]#cdremoved/
[root@localhostremoved]#pwd
/opt/soft/removed
[root@localhostremoved]#rm../removed-rf
[root@localhostremoved]#pwd
/opt/soft/removed
[root@localhostremoved]#/bin/pwd
/bin/pwd:couldntfinddirectoryentryin“..”withmatchingi-node
[root@localhostremoved]#cd
[root@localhost~]#pwd
/root
[root@localhost~]#
----------------------------后续自我小结----------------------------------
pwd敕令应当也是功效绝对变更比拟少的,就是检查我们以后的目次在哪里、-P真实的目次都是在哪里。
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|