Bash & Shell & Git
Bash & Shell & Git
TERMINAL
BASH &
ZSH SHELL
TERMINAL
What are Bash & zsh Terminals?
Shell terminals, such as Bash and zsh, are text-based user
interfaces for interacting with an operating system.
List all files and folders, including hidden ones (names starting .) with ls -a
Recursively list all files below the current working directory with ls -R
File System Navigation
List estimated disk usage of files and folders in a human-readable format with du -ah
Find files by name in the current directory & its subdirectories with find . -type f -name
pattern
Displaying
Files
Display the whole file with cat