aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/sh.snippets
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-06-30 16:03:25 +0200
committerKarel Kočí <cynerd@email.cz>2016-06-30 16:03:25 +0200
commite573b3020c032400eed60b649a2cbf55266e6bb0 (patch)
tree8f572394ac8433529c7a8e70d160a2fbe8268b4e /vim/bundle/vim-snippets/snippets/sh.snippets
parentb8c667bd64b3edd38d56c63c5bd1db53a23b4499 (diff)
downloadmyconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.gz
myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.tar.bz2
myconfigs-e573b3020c032400eed60b649a2cbf55266e6bb0.zip
Add current configurations from old repository
Diffstat (limited to 'vim/bundle/vim-snippets/snippets/sh.snippets')
-rw-r--r--vim/bundle/vim-snippets/snippets/sh.snippets99
1 files changed, 99 insertions, 0 deletions
diff --git a/vim/bundle/vim-snippets/snippets/sh.snippets b/vim/bundle/vim-snippets/snippets/sh.snippets
new file mode 100644
index 0000000..e470a2a
--- /dev/null
+++ b/vim/bundle/vim-snippets/snippets/sh.snippets
@@ -0,0 +1,99 @@
+# Shebang. Executing bash via /usr/bin/env makes scripts more portable.
+snippet #!
+ #!/usr/bin/env sh
+
+snippet bash
+ #!/usr/bin/env bash
+
+snippet sbash
+ #!/usr/bin/env bash
+ set -euo pipefail
+ IFS=$'\n\t'
+
+snippet if
+ if [[ ${1:condition} ]]; then
+ ${0:#statements}
+ fi
+snippet elif
+ elif [[ ${1:condition} ]]; then
+ ${0:#statements}
+snippet for
+ for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do
+ ${0:#statements}
+ done
+snippet fori
+ for ${1:needle} in ${2:haystack} ; do
+ ${0:#statements}
+ done
+snippet wh
+ while [[ ${1:condition} ]]; do
+ ${0:#statements}
+ done
+snippet until
+ until [[ ${1:condition} ]]; do
+ ${0:#statements}
+ done
+snippet case
+ case ${1:word} in
+ ${2:pattern})
+ ${0};;
+ esac
+snippet go
+ while getopts '${1:o}' ${2:opts}
+ do
+ case $$2 in
+ ${3:o0})
+ ${0:#staments};;
+ esac
+ done
+# Set SCRIPT_DIR variable to directory script is located.
+snippet sdir
+ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+# getopt
+snippet getopt
+ __ScriptVersion="${1:version}"
+
+ #=== FUNCTION ================================================================
+ # NAME: usage
+ # DESCRIPTION: Display usage information.
+ #===============================================================================
+ function usage ()
+ {
+ echo "Usage : $${0:0} [options] [--]
+
+ Options:
+ -h|help Display this message
+ -v|version Display script version"
+
+ } # ---------- end of function usage ----------
+
+ #-----------------------------------------------------------------------
+ # Handle command line arguments
+ #-----------------------------------------------------------------------
+
+ while getopts ":hv" opt
+ do
+ case $opt in
+
+ h|help ) usage; exit 0 ;;
+
+ v|version ) echo "$${0:0} -- Version $__ScriptVersion"; exit 0 ;;
+
+ * ) echo -e "\n Option does not exist : $OPTARG\n"
+ usage; exit 1 ;;
+
+ esac # --- end of case ---
+ done
+ shift $(($OPTIND-1))
+snippet root
+ if [ \$(id -u) -ne 0 ]; then exec sudo \$0; fi
+
+snippet fun-sh
+ ${1:function_name}() {
+ ${0:#function_body}
+ }
+
+snippet fun
+ function ${1:function_name}() {
+ ${0:#function_body}
+ }