[1.3. DirectoryOperations] translated fix #5

This commit is contained in:
itooww 2017-06-18 21:08:45 +09:00
parent d268708792
commit ad53321784
1 changed files with 6 additions and 4 deletions

View File

@ -711,23 +711,25 @@ $ wc demo.txt
</table>
### a. `cd`
Moves you from one directory to other. Running this
1つのディレクトリから別のディレクトリに移動する。
```bash
$ cd
```
moves you to home directory. This command accepts an optional `dirname`, which moves you to that directory.
home ディレクトリに移動する。
このコマンドはオプションの `dirname` を受け取り、そのディレクトリに移動する。
```bash
cd dirname
```
### b. `mkdir`
Makes a new directory.
新しいディレクトリを作る。
```bash
mkdir dirname
```
### c. `pwd`
Tells you which directory you currently are in.
今いるディレクトリを表示する。
```bash
pwd
```