2
0
Fork 0
mirror of https://github.com/Idnan/bash-guide.git synced 2018-11-09 02:29:39 +01:00

[1.3. DirectoryOperations] translated fix #5

This commit is contained in:
itooww 2017-06-18 21:08:45 +09:00
parent d268708792
commit ad53321784

View file

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