Use the 'PS' (process status) command to find out the name of the executable file for a process. If you use the long form and you know the process id, try:
PS -p process-id -l
or
PS -p process-id -f
There is no traditional 'execute' command in Unix.
kill kill-all Wait that might be in Unix... Windows has "k" and then the "Process ID" or "Process Name" taskkill is another command you could try.
There is no standard 'format' command in Unix.
BG is a command on Unix and Unix-like operating systems to run a job(process) asynchronously in the background.
The 'CD' command is not standard for Unix. The 'cd' command, however, will change directories (folders). It is a means of navigating the Unix file system.
In Unix, use the 'man' command.
For Unix, any command is run as a sub-process. You don't need an actual command to create the subprocess. You can also force the process to run in the background by appending a '&' symbol at the end of the command.
Some examples of the Unix find command are "find . -print" or "find /-name foo". One other command could be "find /home/wpollock/foo" or "find /tmp /var/tmp. $HOME -name foo".
The sleep command causes the current process to be suspended for N number of seconds. It introduces a delay in the process.
Use the 'uname -a' command. It reports on the Unix system, version, machine name, amongst other things.
The "who" command.
first, make a file. in the file you type in the command's name. an example would be the command date. name the file what you want to call that command. when you use the command, type in cat filename and the computer will do the command.