From 42600d9b43e0e3da888f6f71718dc1d190211c21 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Sat, 30 Jan 2010 20:44:19 +0100 Subject: [PATCH] Include shFlags repo as a Git submodule. shFlags is a library written to greatly simplify the handling of command-line flags in Bourne based Unix shell scripts (bash, dash, ksh, sh, zsh) on many Unix OSes (Linux, Solaris, Mac OS X, etc.). Most shell scripts use getopt for flags processing, but the different versions of getopt on various OSes make writing portable shell scripts difficult. shFlags instead provides an API that doesn't change across shell and OS versions so the script writer can be confident that the script will work. (Taken from http://code.google.com/p/shflags/) --- .gitmodules | 3 +++ shFlags | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 shFlags diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8566567 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "shFlags"] + path = shFlags + url = git://github.com/nvie/shFlags.git diff --git a/shFlags b/shFlags new file mode 160000 index 0000000..2fb06af --- /dev/null +++ b/shFlags @@ -0,0 +1 @@ +Subproject commit 2fb06af13de884e9680f14a00c82e52a67c867f1