sqm-scripts
sqm-scripts copied to clipboard
document describing SCRIPTs
Because of the /usr/lib/sqm/*.help files, good descriptions for each SCRIPT already exist. Maybe a small script could compile a markdown (and/or manpage) document from the existing help files (and then would automatically update if they changed). Something like:
for name in `ls /usr/lib/sqm/*.qos.help|sort`
do
basename -s .qos.help $name
echo ---------------
fold -s $name
echo
done
Oh and with a introduction explaining things and common variables, etc