makeuseof : How to Run Linux Commands in the Background
# xample
- Send Commands to the Background With nohup
```
nohub cp a.txt b.txt
```
- list of all background tasks by :
- fg
```
fg %n
```
- ps wx
```
ps xw
```
# Refrensi
- [makeuseof](https://www.makeuseof.com/run-linux-commands-in-background/) : How to Run Linux Commands in the Background
xample
list of all background tasks by :
Refrensi