From a46e8c0fde97716cf224d25df4bdb53b79c98ad5 Mon Sep 17 00:00:00 2001 From: koalaman Date: Fri, 19 Jan 2018 18:27:21 -0800 Subject: [PATCH] Updated SC1037 (markdown) --- SC1037.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/SC1037.md b/SC1037.md index a84a17a..4de906b 100644 --- a/SC1037.md +++ b/SC1037.md @@ -32,3 +32,9 @@ In `dash`, `$10` is ([wrongly](https://gnu.org/s/autoconf/manual/html_node/Shell bash -c 'set a b c d e f g h i j; echo $10 ${1}0' # POSIX: a0 a0 dash -c 'set a b c d e f g h i j; echo $10 ${1}0' # WRONG: j a0 ``` + +### Related resources: + +* [BashFaq: How can I access positional parameters after $9?](https://mywiki.wooledge.org/BashFAQ/025) +* [StackOverflow: How to handle more than 10 parameters in shell +](https://stackoverflow.com/questions/4912733/how-to-handle-more-than-10-parameters-in-shell)