InterviewSolution
Saved Bookmarks
| 1. |
We can list the jobs queued using at command by using ____ option.(a) -p(b) -v(c) -l(d) -rI got this question during an online exam.The origin of the question is Process Management in division The Process of Unix |
|
Answer» RIGHT choice is (c) -l For explanation: Jobs scheduled using at command are sent to a QUEUE for later EXECUTION. To LIST the jobs in this queue we can use the -l OPTION with at command. This command will list each of the scheduled jobs in the queue in this format. |
|