From 5dff9f6752e64b715210ae8c1e7b3249999f20b3 Mon Sep 17 00:00:00 2001 From: Kevin Ernst Date: Sun, 18 Oct 2020 08:58:22 -0400 Subject: [PATCH] Resurrect broken link to kfirlavi.com blog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …using the Wayback Machine. Closes #47. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bddbb5d..956d1b8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Bash is the JavaScript of systems programming. Although in some cases it's bette * It's neutral. Unlike Ruby, Python, JavaScript, or PHP, Bash offends equally across all communities. ;) * It's made to be glue. Write complex parts in C or Go (or whatever!), and glue them together with Bash. -This document is how I write Bash and how I'd like collaborators to write Bash with me in my open source projects. It's based on a lot of experience and time collecting best practices. Most of them come from these [two](http://wiki.bash-hackers.org/scripting/obsolete) [articles](http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming/), but here integrated, slightly modified, and focusing on the most bang for buck items. Plus some new stuff! +This document is how I write Bash and how I'd like collaborators to write Bash with me in my open source projects. It's based on a lot of experience and time collecting best practices. Most of them come from these [two](http://wiki.bash-hackers.org/scripting/obsolete) [articles](https://web.archive.org/web/20180917174959/http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming), but here integrated, slightly modified, and focusing on the most bang for buck items. Plus some new stuff! Keep in mind this is not for general shell scripting, these are rules specifically for Bash and can take advantage of assumptions around Bash as the interpreter.