michael@slashetc:~$

  • How to Read a File Line By Line in Bash

    When writing Bash scripts, you will sometimes find yourself in situations where you need to read a file line by line. For example, you may have a text file containing data that should be processed by the script. Article Source.

  • Signing Git Commits

    by Kyle Rankin Protect your code commits from malicious changes by GPG-signing them. Often when people talk about GPG, they focus on encryption—GPG’s ability toprotect a file or message so that only someone who has the appropriateprivate key can read it. Yet, one of the most important functions GPG offersis...

  • What The @#$%&! (Heck) is this

    by Mitch Frazier   You’ve seen it a million times—the hash-bang (#!) line at the top of a script—whether it be Bash, Python, Perl or some other scripting language. And, I’m sure you know what its purpose is: it specifies the script interpreter that’s used to execute the script. But, do...