- Tab completion for commands and files
- History
- Colorization
- Command redirection
- Pipe
- Background processes
- Directory stack operations
- Directory traversal using
cd /path
- Clear terminal using
clear
- Exit shell using
exit
- List commands using
help
- Show current stack
dirs
- Save current dir and go to path
pushd /path
- Pop last directory from stack
popd
- History search using
history | grep <pattern>
- Search for files using
find /path -name <pattern>
- Search for directories using
find /path -type d