Bash for Beginners in 37 Lessons

Razvan L
6 min readMay 23, 2022

--

Learn how to master the Linux/MacOS command-line from scratch using Bash.

Although it’s true that the graphical user interface dramatically simplifies our personal day to day use of computers, to navigate through folders, edit files and install software, the shell beyond providing an outstanding level of control over the operating system, still proves to this day to be the best and sometimes only option to perform most of our tasks as developers.

Indeed, using a shell is, often the only way to run certain programs or to connect to distant computers, as tools like Git or Linux servers don’t provide a graphical interface.

In this series of articles transcribed from my free Skillshare course “The Linux Command-Line for Beginners” available here: https://skl.sh/37jT4dK, you'll learn:

  • General concepts about Unix and computer science
  • How to read and build commands
  • How to navigate the Unix filesystem
  • How to use expansions
  • How to manipulate files and directories
  • How to redirect a command’s input and output
  • How to use in-terminal text editors
  • How to use package managers
  • How to create users, groups and control access rights
  • How to control several processes

Working With Commands

Quoting, Escaping & Expanding

Navigating the Filesystem

Manipulating Files and Directories

Input/Output Redirections

In-Terminal Text Editors

The environment

Utilities and package managers

Permissions

Job control

--

--