remove unecessary spaces

This commit is contained in:
Mylloon 2024-04-11 14:52:24 +02:00
parent 26cfd339ee
commit 28f2a16391
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -8,11 +8,11 @@ function catall --description "Print recursively multiple files."
# Check if not enough arguments provided, or help menu
if set -ql _flag_help || test -z $argv[2]
echo -e "Usage: $current_name <directory> exts ..."
echo -e " $current_name [-h|--help] \t\t\t - Show this help message"
echo -e " $current_name <directory> *.c \t\t - Cat all .C files"
echo -e " $current_name <directory> *.c *.h ... \t - Cat .C and .H files, etc."
echo -e "Flag:"
echo -e " [-n|-noheader] \t\t\t - Don't show the filenames before print"
echo -e " $current_name [-h|--help] \t\t - Show this help message"
echo -e " $current_name <directory> *.c \t - Cat all .C files"
echo -e " $current_name <directory> *.c *.h ... - Cat .C and .H files, etc."
echo -e "Available options:"
echo -e " -n | --noheader \t\t - Don't show the filenames before print"
return 0
end