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

Update README.md

This commit is contained in:
Adnan Ahmed 2017-04-24 23:44:09 +04:00 committed by GitHub
parent 634bda0187
commit e17c584647

View file

@ -889,6 +889,7 @@ whois domain
<td><a href="#a-kill">kill</a></td>
<td><a href="#b-killall">killall</a></td>
<td><a href="#c-&">&amp;</a></td>
<td><a href="#d-nohup">nohup</a></td>
</tr>
</table>
@ -904,7 +905,7 @@ Kill all processes with the name.
killall processname
```
### c. `&`
### c. `&amp;`
The `&` symbol instructs the command to run as a background process in a subshell.
```bash
command &