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:
parent
d268708792
commit
ad53321784
1 changed files with 6 additions and 4 deletions
10
README.md
10
README.md
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue