- touch, mv, rm
- chmod: permission bits
- ln: symbolic/hard link
- Passing arguments
- Exit values:
- demo:
echo alice; echo $?; rm filenamedttt; echo $?
- exercise:
touch file111; rm touch file111; echo $?
what is the output?- what do you need to do to make
echo $?
printout 1
- homework:
makedir fff; echo $?; makedir fff; echo $?;
why is output different?
- demo:
- Commenting
- & < |
- ps
- top
- Background processes