9 Best Articles in 2021
zwischenzugs.com
Ten Things I Wish I’d Known About bash
zwischenzugs.com
~17 min read · 150 saves · From 2018 · Intro Recently I wanted to deepen my understanding of bash by researching as much of it as possible. Because I felt bash is an often-used (and under-understood) technology, I ended up writing a boo…
github.com
dylanaraps/pure-bash-bible
github.com
42 saves · From 2018 · pure-bash-bible - 📖 A collection of pure bash alternatives to external processes.
redsymbol.net
Use the Unofficial Bash Strict Mode (Unless You Looove Debugging)
redsymbol.net
~13 min read · 56 saves · From 2015 · Let's start with the punchline. Your bash scripts will be more robust, reliable and maintainable if you start them like this: #!/bin/bash set -euo pipefail IFS=$'\n\t' I call this the unofficial bash…
kfirlavi.com
Defensive BASH programming
kfirlavi.com
1 min read · 32 saves · From 2015 · Here is my Katas for creating BASH programs that work. Nothing is new here, but
from my experience pepole like to abuse BASH, forget computer science …
github.com
alexanderepstein/Bash-Snippets
github.com
20 saves · From 2017 · Bash-Snippets - A collection of small bash scripts for heavy terminal users
github.com
GitHub - denysdovhan/bash-handbook: For those who wanna learn Bash
github.com
17 saves · From 2016 · bash-handbook - :book: For those who wanna learn Bash
medium.com
Handy Bash feature: Process Substitution
medium.com
1 min read · 98 saves · From 2015 · Pretty much everything useful I ever learned about UNIX shells was not from reading books or manuals...
samrowe.com
Advancing in the Bash Shell
samrowe.com
~15 min read · 36 saves · From 2016 · If you’ve ever used GNU/Linux, chances are good that you’ve used bash. Some people hold the belief that using a GUI is faster than using a CLI. These people have obviously never seen someone who uses…
Trending
betterdev.blog
Minimal safe Bash script template
betterdev.blog
8 min read · 26 saves · 2020-12-14 · Maciej Radzikowski · Minimal Bash script template that will make your scripts safer, consistent with standards, and provide a way to parse and validate parameters.
github.com
bobbyiliev/introduction-to-bash-scripting
github.com
2020-11-25 · Free Introduction to Bash Scripting Book. Contribute to bobbyiliev/introduction-to-bash-scripting development by creating an account on GitHub.
More like this
github.com
niieani/bash-oo-framework
github.com
30 saves · From 2016 · bash-oo-framework - Bash Infinity is a modern boilerplate / framework / standard library for bash
bash.academy
The Bash Academy
bash.academy
30 saves · From 2015 · A complete guide for newcomers and advanced users to correct usage and deep understanding of the bash shell language.
arslan.io
How to write idempotent Bash scripts
arslan.io
4 min read · 30 saves · 2019-07-03 · This blog post shows tips and tricks to write resilient and idempotent bash scripts.
betterdev.blog
Minimal safe Bash script template
betterdev.blog
8 min read · 26 saves · 2020-12-14 · Maciej Radzikowski · Minimal Bash script template that will make your scripts safer, consistent with standards, and provide a way to parse and validate parameters.
idontplaydarts.com
Detecting the use of "curl
idontplaydarts.com
4 min read · 44 saves · From 2016 · Another reason not to pipe from curl to bash. Detecting curl | bash serverside.
DEV Community 👩💻👨💻
101 Bash Commands and Tips for Beginners to Experts
DEV Community 👩💻👨💻
20+ min read · 46 saves · From 2019 ·
Until about a year ago, I worked almost exclusively within the macOS and Ubuntu...
invent.life
Bash Infinity Framework - A modern boilerplate for bash
invent.life
1 min read · 15 saves · From 2016 · Project DescriptionBash Infinity is a standard library and a boilerplate framework for writing tools using bash. It’s modular and lightweight, while managing to implement some concepts from C#, Java…
spin.atomicobject.com
How (and Why) to Log Your Entire Bash History
spin.atomicobject.com
~16 min read · 22 saves · From 2016 · An easy bit of Bash configuration that will log your bash history to dated log files so you can refer back to them at any point in the future.
Open Source Way
Testing Bash with BATS
Open Source Way
10 min read · 11 saves · 2019-02-21 · The Bash Automated Testing System puts Bash code through the same types of testing processes used by Java, Ruby, and Python developers.