Files
q-tools/README
2015-05-11 20:17:08 +03:00

20 lines
286 B
Bash
Executable File

#!/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