Update README.md

This commit is contained in:
onceupon 2017-06-28 20:28:41 +08:00 committed by GitHub
parent 99dd68433d
commit 5ca3fb531b

View File

@ -1381,18 +1381,18 @@ $! :is the PID of the most recent background command.
```bash ```bash
>filename >filename
``` ```
##### unzip tar.bz2 file (e.g. file.tar.bz2) ##### Unzip tar.bz2 file (e.g. file.tar.bz2)
```bash ```bash
tar xvfj file.tar.bz2 tar xvfj file.tar.bz2
``` ```
##### output a y/n repeatedly until killed ##### Output a y/n repeatedly until killed
'y': 'y':
```bash ```bash
yes yes
``` ```
or 'n' or 'n':
```bash ```bash
yes yes n
``` ```