Linux下的PWD命令:掌握系统的路径(linux常用命令pwd)
Linux下的pwd命令是Print Working Directory的缩写,是一种查看用户当前绝对路径的Linux命令。它能帮助我们轻松找到当前目录的绝对路径,避免混淆。
pwd命令的语法格式如下:
pwd [options]
这里的参数options有:
-L :使用软连接的真实路径
-P :使用物理路径
pwd命令用于查看当前工作目录的绝对路径。比如,当前的工作目录为/home/user/Desktop,命令行输入 `pwd` 将会输出 /home/user/Desktop。
例如以下示例:
ls -l
total 9
drwxrwxrwx 2 root root 4096 Jul 15 19:27 dir1
drwxrwxrwx 2 root root 4096 Jul 16 19:28 dir2
-rwxrwxrwx 1 root root 40 Jul 17 19:29 file1
-rwxrwxrwx 1 root root 40 Jul 18 19:30 file2
-rwxrwxrwx 1 root root 40 Jul 19 19:31 file3
cd dir2
pwd
/path/to/dir2
以上。
利用pwd命令可以帮助我们快速查看当前工作目录的绝对路径,简化了开发人员的工作量,提升开发效率。