From: Mike Frysinger Date: Fri, 5 Oct 2012 21:07:00 +0000 (-0400) Subject: g4 wrapper X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2a08623e0b4ace9df036117f198a03ee4178c0da;p=home.git g4 wrapper --- diff --git a/.bin/g4 b/.bin/g4 new file mode 100755 index 0000000..2e8e2d6 --- /dev/null +++ b/.bin/g4 @@ -0,0 +1,11 @@ +#!/bin/bash + +args=( "$@" ) + +case ${args[0]} in +st) + args[0]="status" + ;; +esac + +exec /usr/bin/g4 "${args[@]}"