Learn
Nix is a package manager which comes in a form of many command line tools. Packages that Nix can build are defined with the Nix Expression Language.
—
https://nixos.org/learn.html
Month: August 2020
cheat
cheat cheat allows you to create and view interactive cheatsheets on the command-line. It was designed to help remind *nix system administrators of options for commands that they use frequently, but not frequently enough to remember. Use cheat with cheatsheets.
—
https://github.com/cheat/cheat
Bash cheat sheet: Top 25 command
The command line is something every developer should learn and implement into their daily routine. It has become a Swiss Army knife of features behind deceptively simple commands, which allow you to gain greater control of your system, become more productive, and much more.
—
https://www.educative.io/blog/bash-shell-command-cheat-sheet
cfenollosa/bashblog: A single Bash script to create blogs. Download, run, w
I created it because I wanted a very, very simple way to post entries to a blog by using a public folder on my server, without any special requirements and dependencies. Works on GNU/Linux, OSX and BSD. How simple? Just type ./bb.sh post and start writing your blogpost.
—
https://github.com/cfenollosa/bashblog
Good news for developers: The CLI is back | ZDNet
Back when I started writing code, everything was done in the command line. You configured systems with the command line, wrote scripts in vi and emacs and ed, building your own library of commands that simplified your tasks and automated the complex.
Keep a Changelog
To make it easier for users and contributors to see precisely what notable changes have been made between each release (or version) of the project. People do. Whether consumers or developers, the end users of software are human beings who care about what’s in the software.
wagoodman/bashful: Use a yaml file to stitch together commands and bash sni
This is beta quality! Use at your own risk. Use a yaml file to stitch together commands and bash snippets and run them with a bit of style. Why? Because your bash script should be quiet and shy-like (…and not such a loud mouth).
How Much Do Echo Statements Slow Down a Bash Script? – Cole Killian Adventu
I was trying to optimize a bash script and wondered how much echo statements would slow it down, so I did a few tests. I was specifically wondering if adding a check for verbosity before an echo statement would have a significant affect on runtime, vs just removing the echo statement all together.
(168 words)
https://colekillian.com/posts/how-much-do-echo-statements-slow-down-a-bash-script-/