Command | Purpose |
at | Runs a program at one specified time. |
batch | Executes commands entered from standard input. Similar to at but uses less system resources because it runs one process, waits for it to end, then runs another. |
crontabs | Allows you to create and manage the entries that inform the cron daemon about the applications and processes you want to automate. |
id | Shows user ID and group membership of a file. |
kill | Terminates a process. |
ps | Examines running processes on the system. |
sleep | Allows you to specify a certain period of time (usually in seconds) to wait before the system executes a command. |
source | Allows you to execute programs that have not yet been compiled. |
which | Displays which command gets run under a given name. |