hiki-t / bash-tutorials

a collection of bash-tutorials

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bash Tutorials

a collection of bash-tutorials

A list of bash tutorial sites

I mainly recommend learning from

Learning how to use text editor (nano, vi(m), atom, vscode)

  • LinkedIn online courses

Learning how to use regular expressions (Regex)

Learning how to use parameter expansion

Learning how to use grep, searching strings and patterns

Expanding (using) variables Source
eg

$ example="Hello world" # assign var

$ echo $example # current standard, 2022
Hello world

$ echo "$example" # old fashion
Hello world

$ echo '$example' # single quote, just show everything as simple text
$example

$ echo '\$example' # single quote
\$example

$ echo "\$example" # double quote, so escaping $ can be done
$example

A list of top bash command tutorials

A list

  1. Bash cheat sheet: Top 25 commands and creating custom commands
  2. top command in Linux with Examples - GeeksforGeeks
  3. Linux Bash Commands: 101 Bash Commands and Tips for Beginners to Experts - DEV Community
  4. Bash cheat sheet: Top 28 commands for you to learn 🤺 - DEV Community
  5. Top 10 Bash file system commands you can’t live without | Hacker Noon
  6. 16 Top Command Examples in Linux [Monitor Linux Processes]
  7. Top 25 Linux Commands
  8. 16 Must-Know Bash Commands for Data Scientists | by Giorgos Myrianthous | Towards Data Science

Frequently used bash commands

Where to practice bash exercises

TLDP

GNU

Redhat

Wikibooks

Other sites I found so far

bash tutorials

exercises

Books

To be continued...

About

a collection of bash-tutorials

License:MIT License