17 lines
196 B
Bash
Executable File
17 lines
196 B
Bash
Executable File
#!/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
|
|
|