From 3080dd3fc97b90bcdec12f815d208fa39087bef6 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Fri, 31 Aug 2018 07:05:47 -0600 Subject: [PATCH] Fix broken link in bash section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a97758..e1a9651 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Here are some useful resources to help you step up your shell scripting game: * [Google's Shell Style Guide](https://google.github.io/styleguide/shell.xml) lists what Google's developers consider best practices for bash scripts. * [Learning the Bash Shell](http://shop.oreilly.com/product/9780596009656.do) - hard to go wrong with an O'Reilly reference on anything, really. * [Pure Bash Bible](https://github.com/dylanaraps/pure-bash-bible) - A collection of pure bash alternatives to external processes. -* [Safe Ways to do Things in Bash(https://github.com/anordal/shellharden/blob/master/how_to_do_things_safely_in_bash.md) - Excellent set of tips from the authors of [shellharden](https://github.com/anordal/shellharden) +* [Safe Ways to do Things in Bash](https://github.com/anordal/shellharden/blob/master/how_to_do_things_safely_in_bash.md) - Excellent set of tips from the authors of [shellharden](https://github.com/anordal/shellharden) * [shellcheck](https://github.com/koalaman/shellcheck) is a lint for bash. It'll help you find unused variables, deprecated syntax and other things that make your bash scripts less stable. You can install it with `apt-get`, `brew`, `cabal`, or `yum`. * [shellharden](https://github.com/anordal/shellharden) - is a syntax highlighter and a tool to semi-automate the rewriting of scripts to ShellCheck conformance, mainly focused on quoting.