diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/examples.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/config/examples.sh b/config/examples.sh new file mode 100644 index 0000000..41d5c0c --- /dev/null +++ b/config/examples.sh @@ -0,0 +1,20 @@ +_examples=( + +'example tag: +echo "example command"' + +'example tag: +printf "%s\n" "this is a second example tag example"' + +'example tag: +printf "%s\n" good for measure another | sort' + +'a different tag: +echo "did you notice the tag above along with its adjacency indicators (+) ?"' + +'a different tag: +uniq \ + <(sort \ + <(printf "%s\n" "${_examples[@]//:$'\n'*/}") )' + +) |