From 07c2c9a3c4cc30da1f60df8c5b1c774466fadf6b Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Thu, 23 Apr 2015 01:57:54 +0100 Subject: [PATCH] vim: use -gt, > is for strings --- vim/ultisnips/sh.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/ultisnips/sh.snippets b/vim/ultisnips/sh.snippets index ff10449..8393d02 100644 --- a/vim/ultisnips/sh.snippets +++ b/vim/ultisnips/sh.snippets @@ -26,7 +26,7 @@ function usage () # Parse arguments declare -a args -while [[ $# > 0 ]]; do +while [[ $# -gt 0 ]]; do opt="\$1" case $opt in -- 2.48.1