mirror of
https://github.com/notwa/rc
synced 2024-11-12 15:49:03 -08:00
support new compatibility flags in tableize
This commit is contained in:
parent
3a1ab5d5bc
commit
7fe356faf7
1 changed files with 10 additions and 0 deletions
10
tableize
10
tableize
|
@ -59,6 +59,7 @@ tableize() {
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
check=0
|
||||||
set -f
|
set -f
|
||||||
IFS=' '
|
IFS=' '
|
||||||
for flag in $decom; do case "$flag" in
|
for flag in $decom; do case "$flag" in
|
||||||
|
@ -71,6 +72,15 @@ tableize() {
|
||||||
(NO_BASH) bash=no;;
|
(NO_BASH) bash=no;;
|
||||||
(NO_DASH) dash=no;;
|
(NO_DASH) dash=no;;
|
||||||
(NO_ASH) ash=no;;
|
(NO_ASH) ash=no;;
|
||||||
|
(compat:) check=1;;
|
||||||
|
(+ash) [ "$check" = 0 ] || ash=yes;;
|
||||||
|
(+bash) [ "$check" = 0 ] || bash=yes;;
|
||||||
|
(+dash) [ "$check" = 0 ] || dash=yes;;
|
||||||
|
(+zsh) [ "$check" = 0 ] || zsh=yes;;
|
||||||
|
(-ash) [ "$check" = 0 ] || ash=no;;
|
||||||
|
(-bash) [ "$check" = 0 ] || bash=no;;
|
||||||
|
(-dash) [ "$check" = 0 ] || dash=no;;
|
||||||
|
(-zsh) [ "$check" = 0 ] || zsh=no;;
|
||||||
('#'*) break;;
|
('#'*) break;;
|
||||||
esac done
|
esac done
|
||||||
done < "$f"
|
done < "$f"
|
||||||
|
|
Loading…
Reference in a new issue