Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

🐚 Shell Scripting & Command Line Terminals

Master command-line terminals (Bash, PowerShell, Zsh) to automate system tasks, manage configurations, and execute pipelines.


📖 Key Topics

  1. Terminal Basics:
    • Navigation: ls/dir, cd, pwd, mkdir.
    • File editing/viewing: cat, less, nano, vim.
    • Text filters: grep, awk, sed, cut.
  2. Bash Scripting:
    • Variables, read input, arguments ($1, $2).
    • Conditionals (if [ -f file ]) and loops (for, while).
    • Standard Input/Output/Error redirection (>, >>, 2>, |).
  3. PowerShell:
    • Command-lets (cmdlets), piping objects instead of plain text, and execution policies.