#!/bin/bash

# Start me to print all the helps to 
# all the commands within this repository


cd $( dirname $0 )/bin

(
echo Add the tools to PATH by sourcing the "rc" in this folder
 
for e in *; do
   test -x $e || continue
   echo -e "\n===== $e =====\n"
   ./$e -h
done

) | less

Description
No description provided
Readme 2.2 MiB
Languages
Python 65.9%
Shell 29.7%
CSS 2.4%
Vim Script 1%
Makefile 1%