$?
- if the command was successful, $? will contain 0, else a non-zero value
What is Shell?
- it is a medium provided to interact with the kernel, which is a CLI to the Unix system
Types of Shells
- C shell
Bash export
- it designates specified variables and functions to be passed to child-process
> operator (right-angle bracket)
stdout
- it is usually the terminal window
> > operator
- adds the output to the existing content instead of overwriting it
What is a .sh file?
!/usr/bin/ksh
- it tells Unix that this script should be run through the /bin/bash shell
umask
- it lets you set up default permissions for newly created files and folders