remove unnecessary flag

This commit is contained in:
Denis Lehmann 2022-04-06 19:42:10 +02:00
parent 0f5b546cbb
commit 24715e6867
2 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

6
sf
View file

@ -229,15 +229,15 @@ function _sfusage {
[ -n "${sfdesc}" ] && echo -e "\n$sfdesc" | fold -s -w "$_sfwidth"
if [ "$_sfpdesc" != "" ]; then
echo -e "\nPOSITIONAL ARGUMENTS"
echo -e "$_sfpdesc" | column -s ";" -t -W 2
echo -e "$_sfpdesc" | column -s ";" -t
fi
if [ "$_sfodesc" != "" ]; then
echo -e "\nOPTIONS"
echo -e "$_sfodesc" | column -s ";" -t -W 2
echo -e "$_sfodesc" | column -s ";" -t
fi
if [ "$_sfexamples" != "" ]; then
echo -e "\nEXAMPLES"
echo -e "$_sfexamples" | column -s ";" -t -W 2
echo -e "$_sfexamples" | column -s ";" -t
fi
if [ -n "${sfextra}" ]; then
echo -e "\n$sfextra"