Added VIM tools, and help pages to all scripts missing one

This commit is contained in:
ville rantanen
2015-04-02 12:07:42 +03:00
parent 85928b7326
commit 029e2f5ad0
15 changed files with 85 additions and 18 deletions

16
README Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Start me to print all the helps to
# all the commands within this repository
cd $( dirname $0 )/bin
(
for e in *; do
echo -e "\n===== $e =====\n"
./$e -h
done
) | less