linux 命令:pwd详解
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
pwd的功能是打印当前工作目录的名字
先看一下帮助文档:命令是help pwd
pwd: pwd [-LP]
打印当前工作目录的名字。
选项:
-L 打印 $PWD 变量的值,如果它命名了当前的工作目录
-P 打印当前的物理路径,不带有任何的符号链接
默认情况下,`pwd' 的行为和带 `-L' 选项一致
退出状态:
除非使用了无效选项或者当前目录不可读,否则返回状态为0。
实际操作:
# dir_link 是 dir 的软链接
# ll | grep dir
drwxr-xr-x 2 root root 4096 11月 24 16:04 dir
lrwxrwxrwx 1 root root 3 11月 24 11:15 dir_link -> dir
# pwd
/root/dir_link
# pwd -L
/root/dir_link
# 打印实际目录(物理路径)
# pwd -P
/root/dir
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)