You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
579 B

7 years ago
pwd
===
6 years ago
7 years ago
绝对路径方式显示用户当前工作目录
## 补充说明
**pwd命令** 以绝对路径的方式显示用户当前工作目录。命令将当前目录的全路径名称(从根目录)写入标准输出。全部目录使用`/`分隔。第一个`/`表示根目录最后一个目录是当前目录。执行pwd命令可立刻得知您目前所在的工作目录的绝对路径名称。
### 语法
```
pwd选项
```
6 years ago
7 years ago
```
--help显示帮助信息
--version显示版本信息。
```
### 实例
```
[root@localhost ~]# pwd
/root
```