]> sipb.mit.edu Git - wiki.git/blobdiff - doc/safe-shell.mdwn
fix markup
[wiki.git] / doc / safe-shell.mdwn
index d7d6bfe91ae8b4c90656373e0c0cfc4cfc1acb62..7b8f60114a3a8c1d31d64a9138d8451fbb67fa60 100644 (file)
@@ -54,8 +54,7 @@ Disable filename expansion (globbing) upon seeing `*`, `?`, etc..
 
 If your script depends on globbing, you obviously shouldn't set this. Instead,
 you may find
-`[shopt](http://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html)
--s failglob` useful, which causes globs that don't get expanded to cause
+[`shopt -s failglob`](http://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html) useful, which causes globs that don't get expanded to cause
 errors, rather than getting passed to the command with the `*` intact.
 
 ### [`set -o pipefail`](http://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html)