andyhurd / c_shell

0 stars 0 forks source link

A command with no arguments #3

Open andyhurd opened 12 years ago

andyhurd commented 12 years ago

Example: ls Details: Your shell must block until the command completes and, if the return code is abnormal, print out a message to that effect. Concepts: Forking a child process, waiting for it to complete, synchronous execution System calls: fork(), execvp(), exit(), wait()