QuestionQ109
Linux FundamentalsA script named backup.sh must execute on a Linux server to carry out a backup operation. The script must keep running even when the terminal session is closed. Which command accomplishes this?
- A ./backup.sh
- B sudo ./backup.sh
- C ./backup.sh > /dev/null
- D nohup ./backup.sh &
Community Discussion