TranslateProject/published/201412/20141124 15 pwd (Print Working Directory) Command Examples in Linux.md

265 lines
10 KiB
Markdown
Raw Normal View History

菜鸟教程:全面学习 pwd 命令
2014-11-24 15:41:26 +08:00
================================================================================
对于那些使用Linux命令行的人来说**pwd**‘命令是非常有用的,它告诉你你现在在那个目录,从根目录(**/**)如何到达。特别是对于或许会在目录的切换间容易糊涂的Linux新手而言**pwd** 可以拯救他们。
2014-11-24 15:41:26 +08:00
![15 pwd Command Examples](http://www.tecmint.com/wp-content/uploads/2014/11/pwd-command.png)
*15个 pwd 命令示例*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
### 什么是pwd? ###
2014-11-24 15:41:26 +08:00
**pwd** 代表的是‘**Print Working Directory**’(打印当前目录)。如它的名字那样,‘**pwd**’会打印出当前工作目录,或简单的来说就是当前用户所位于的目录。它会打印出以根目录 (**/**)为起点的完整目录名绝对目录。这条命令是一条shell内建命令并且在大多数shell中都可以使用如bash、Bourne shellksh、zsh等等。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
#### pwd的基本语法: ####
2014-11-24 15:41:26 +08:00
# pwd [OPTION]
2014-11-29 19:15:26 +08:00
#### pwd的选项 ####
2014-11-24 15:41:26 +08:00
<table border="0" cellspacing="0">
<colgroup width="126"></colgroup>
<colgroup width="450"></colgroup>
<tbody>
<tr>
2014-11-29 19:15:26 +08:00
<td height="21" align="LEFT" style="border: 1px solid #000000;"><b><span style="font-size: small;">&nbsp;选项</span></b></td>
<td align="LEFT" style="border: 1px solid #000000;"><b><span style="font-size: small;">&nbsp;描述</span></b></td>
2014-11-24 15:41:26 +08:00
</tr>
<tr>
<td height="19" align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;-L (即逻辑路径logical )</span></td>
2014-11-29 19:15:26 +08:00
<td align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;使用环境中的路径,即使包含了符号链接</span></td>
2014-11-24 15:41:26 +08:00
</tr>
<tr>
<td height="19" align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;-P (即物理路径physical)</span></td>
2014-11-29 19:15:26 +08:00
<td align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;避免所有的符号链接</span></td>
2014-11-24 15:41:26 +08:00
</tr>
<tr>
<td height="19" align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;&ndash;help </span></td>
2014-11-29 19:15:26 +08:00
<td align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;显示帮助并退出</span></td>
2014-11-24 15:41:26 +08:00
</tr>
<tr>
<td height="19" align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;&ndash;version</span></td>
2014-11-29 19:15:26 +08:00
<td align="LEFT" style="border: 1px solid #000000;"><span style="font-family: Liberation Serif,Times New Roman; font-size: small;">&nbsp;输出版本信息并退出</span></td>
2014-11-24 15:41:26 +08:00
</tr>
</tbody>
</table>
2014-11-29 19:15:26 +08:00
如果同时使用了‘**-L**‘和‘**-P****-L**会有更高的优先级。如果没有指定参数pwd会避开所有的软链接也就是说会使用**-P**‘参数。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
pwd的退出状态:
2014-11-24 15:41:26 +08:00
<table border="0" cellspacing="0">
<colgroup width="128"></colgroup>
<colgroup width="151"></colgroup>
<tbody>
<tr>
<td height="19" align="CENTER" style="border: 1px solid #000000;"><span style="font-size: small;">0</span></td>
2014-11-29 19:15:26 +08:00
<td align="CENTER" style="border: 1px solid #000000;"><span style="font-size: small;">成功</span></td>
2014-11-24 15:41:26 +08:00
</tr>
<tr>
<td height="19" align="CENTER" style="border: 1px solid #000000;"><span style="font-size: small;">非零值</span></td>
2014-11-29 19:15:26 +08:00
<td align="CENTER" style="border: 1px solid #000000;"><span style="font-size: small;">失败</span></td>
2014-11-24 15:41:26 +08:00
</tr>
</tbody>
</table>
2014-11-29 19:15:26 +08:00
本篇的目的是采用例子让你对‘**pwd**‘有更深入的领悟。
2014-11-24 15:41:26 +08:00
**1.** 打印当前工作目录.
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ /bin/pwd
/home/avi
![Print Working Directory](http://www.tecmint.com/wp-content/uploads/2014/11/pwd.gif)
*打印工作目录*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**2.** 为文件夹创建一个符号链接比如说在home目录下创建一个**htm**链接指向**/var/www/html**)。进入新创建的目录并打印出含有以及不含符号链接的目录。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
在home目录下创建一个htm链接指向/var/www/html并进入。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ ln -s /var/www/html/ htm
avi@tecmint:~$ cd htm
![Create Symbolic Link](http://www.tecmint.com/wp-content/uploads/2014/11/Create-Symbolic-Link.gif)
*创建符号链接*
2014-11-24 15:41:26 +08:00
**3.** 从当前环境中打印目录即使它含有符号链接。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ /bin/pwd -L
/home/avi/htm
![Print Current Working Directory](http://www.tecmint.com/wp-content/uploads/2014/11/Print-Working-Directory.gif)
*打印工作目录*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**4.** 解析符号链接并打印出物理目录。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ /bin/pwd -P
/var/www/html
![Print Physical Working Directory](http://www.tecmint.com/wp-content/uploads/2014/11/Print-Physical-Working-Directory.gif)
*打印物理工作目录*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**5.** 查看一下“**pwd**”和“**pwd -P**”的输出是否一致,也就是说,如果没有跟上选项,“**pwd**”时候会自动采用**-P**选项。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ /bin/pwd
/var/www/html
![Check pwd Output](http://www.tecmint.com/wp-content/uploads/2014/11/Check-pwd-Output.gif)
*检查pwd输出*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**结论:** 上面例子4和5的输出很明显结果相同当你“**pwd**”后面不带参数时pwd会使用“**-P**”选项。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**6.** 打印pwd命令的版本。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ /bin/pwd --version
pwd (GNU coreutils) 8.23
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Jim Meyering.
![Check pwd Version](http://www.tecmint.com/wp-content/uploads/2014/11/Check-pwd-Version.gif)
*检查pwd命令版本*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**注意:** pwd 通常不带选项运行,且没有任何参数
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**重要:** 你可能注意到我们刚才运行的都是 “**/bin/pwd**” 而不是 “**pwd**”。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
这有什么区别呢?直接使用“**pwd**”意味着使用shell内置的pwd。你的shell可能有不同版本的pwd。具体请参考手册。当你使用的是**/bin/pwd**时,我们调用的是二进制版本的命令。虽然二进制的版本有更多的选项,但是它们两者都能打印当前的目录。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**7.** 打印所有含有可执行pwd的路径
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ type -a pwd
pwd is a shell builtin
pwd is /bin/pwd
![Print Executable Locations](http://www.tecmint.com/wp-content/uploads/2014/11/Print-Executable-Locations.gif)
*打印可执行文件路径*
2014-11-24 15:41:26 +08:00
**8.** 存储“**pwd**”命令的值到变量中(比如说:**a** 并从中打印变量的值对于观察shell脚本很重要
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ a=$(pwd)
avi@tecmint:~$ echo "Current working directory is : $a"
Current working directory is : /home/avi
![Store Pwd Value in Variable](http://www.tecmint.com/wp-content/uploads/2014/11/Store-Pwd-Value-in-Variable.gif)
*存储pwd的值到变量中*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
下面的例子中也可以用**printf**来替代。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**9.** 将工作路径切换到其他地方(比如说 **/home**),并在命令行中显示。通过执行命令(比如说 **ls**‘)来验证一切**OK**。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ cd /home
avi@tecmint:~$ PS1='$pwd> ' [注意例子中的单引号]
2014-11-24 15:41:26 +08:00
> ls
![Change Current Working Directory](http://www.tecmint.com/wp-content/uploads/2014/11/Change-Current-Working-Directory.gif)
*改变当前工作路径*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**10.** 设置多行显示 (就像下面这样),
2014-11-24 15:41:26 +08:00
/home
123#Hello#!
2014-11-29 19:15:26 +08:00
接着执行命令(比如说 **ls**)来检验一切**OK**。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ PS1='
> $PWD
$ 123#Hello#!
$ '
/home
123#Hello#!
![Set Multi Commandline Prompt](http://www.tecmint.com/wp-content/uploads/2014/11/Set-Multi-Commandline-Prompt.gif)
*设置多行显示*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**11.** 一下子检查当前工作路径以及先前的工作路径。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ echo “$PWD $OLDPWD”
/home /home/avi
![Check Present Previous Working Directory](http://www.tecmint.com/wp-content/uploads/2014/11/Check-Present-Previous-Working-Directory.gif)
*检查当前工作路径*
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
**12.** pwd文件的绝对路径以**/**开始)。
2014-11-24 15:41:26 +08:00
/bin/pwd
2014-11-29 19:15:26 +08:00
**13.** pwd源文件文件的绝对路径以**/**开始)。
2014-11-24 15:41:26 +08:00
/usr/include/pwd.h
**13.** pwd手册的绝对路径以**/**开始)。
2014-11-24 15:41:26 +08:00
/usr/share/man/man1/pwd.1.gz
2014-11-29 19:15:26 +08:00
**15.** 写一个shell脚本分析home目录下的一个目录比如**tecmint**)。如果当前目录是**tecmint**就输出“**Well! You are in tecmint directory**”接着输出“**Good Bye**”,不然就在**tecmint**下面创建一个目录并提示你cd进入它。
2014-11-24 15:41:26 +08:00
2014-11-29 19:15:26 +08:00
让我们首先创建一个tecmint目录在下面创建一个名为pwd.sh的脚本文件。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ mkdir tecmint
avi@tecmint:~$ cd tecmint
avi@tecmint:~$ nano pwd.sh
2014-11-29 19:15:26 +08:00
接下来在pwd.sh中加入下面的脚本。
2014-11-24 15:41:26 +08:00
#!/bin/bash
x="$(pwd)"
if [ "$x" == "/home/$USER/tecmint" ]
then
{
echo "Well you are in tecmint directory"
echo "Good Bye"
}
else
{
mkdir /home/$USER/tecmint
echo "Created Directory tecmint you may now cd to it"
}
fi
给予执行权限并运行。
2014-11-24 15:41:26 +08:00
avi@tecmint:~$ chmod 755 pwd.sh
avi@tecmint:~$ ./pwd.sh
Well you are in tecmint directory
Good Bye
2014-11-29 19:15:26 +08:00
#### 总结 ####
2014-11-24 15:41:26 +08:00
**pwd**是一个最简单且会广泛用到的命令。掌握好pwd是使用Linux终端的基础。就是这些了。我很快会再带来另外有趣的文章请不要走开继续关注我们。
2014-11-24 15:41:26 +08:00
--------------------------------------------------------------------------------
via: http://www.tecmint.com/pwd-command-examples/
作者:[Avishek Kumar][a]
2014-11-29 19:15:26 +08:00
译者:[geekpi](https://github.com/geekpi)
校对:[wxy](https://github.com/wxy)
2014-11-24 15:41:26 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
2014-11-29 19:15:26 +08:00
[a]:http://www.tecmint.com/author/avishek/