foreach: rendre -g et -S compatibles

This commit is contained in:
Jephté Clain 2022-01-20 00:13:05 +04:00
parent 4f7bcbcede
commit f8952225cf
1 changed files with 6 additions and 2 deletions

View File

@ -83,7 +83,7 @@ OPTIONS
répertoire parent (valide uniquement avec l'option -p)
-S, --git-status
Equivalent à spécifier la commande 'git status --p'
Utiliser avec -G ou -C
Utiliser par exemple avec -g, -G ou -C
-G, --git-projects
Equivalent à '--ptitle -p */.git --' e.g '$scriptname -G git pull' pour
mettre à jour les dépôts situés dans un répertoire
@ -124,7 +124,11 @@ parse_args "$@"; set -- "${args[@]}"
case "$command" in
git-status-p)
if [ -n "$shortcut" ]; then
set -- git status --p "$@"
else
set -- "$@" -- git status --p
fi
;;
esac
case "$shortcut" in