Updated SC2142 (markdown)

koalaman
2016-09-05 12:57:17 -07:00
parent e800a6eec4
commit 2579e70882

@@ -19,4 +19,4 @@ Aliases just substitute the start of a command with something else. They therefo
### Exceptions ### Exceptions
None. If your alias ends up quoting the value, e.g. `alias cut_first="awk '{print \$1}'"`, you can technically [[ignore]] this error. However, you should consider turning this alias into a more readable function instead: `cut_first() { awk '{print $1}' "$@"; }`