Adding a script for fast mistralclient help generation

* This script allows generating helpstrings
   of all mistralclient commands and adopt them
   to rst format.
 * This script is just POC and requires a further
   manual editing in order to make the document
   more clear.

Change-Id: If5f9144a254ef0b97c17e66638641e1052cc08d1
This commit is contained in:
Nikolay Mahotkin 2016-09-15 17:05:58 +03:00
parent 04ac956138
commit 259868e6fe
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
if [ -z "$1" ];
then
echo
echo "Usage: $(basename $0) <output-file>"
echo
exit
fi
cmd_list=$(mistral --help | sed -e '1,/Commands for API/d' | cut -d " " -f 3 | grep -vwE "(help|complete|bash-completion)")
file=$1
> $file
for cmd in $cmd_list
do
echo "Processing help for command $cmd..."
echo "**$cmd**:" >> $file
read -d '' helpstr << EOF
$(mistral help $cmd | sed -e '/output formatters/,$d' | grep -vwE "(--help)")
EOF
usage=$(echo "$helpstr" | sed -e '/^$/,$d' | sed 's/^/ /')
helpstr=$(echo "$helpstr" | sed -e '1,/^$/d')
echo -e "::\n" >> $file
echo "$usage" >> $file
echo >> $file
echo "$helpstr" >> $file
echo >> $file
done
# Delete empty 'optional arguments:'.
sed -i '/optional arguments:/ {
N
/^optional arguments:\n$/d
}' $file
# Delete extra empty lines.
sed -i '/^$/ {
N
/^\n$/d
}' $file