1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-09-19 15:04:06 -07:00

update clash with more shells and print exit codes

This commit is contained in:
Connor Olding 2024-07-21 22:32:56 -07:00
parent 0f89fa9021
commit a8beeca8e3

View file

@ -1,12 +1,13 @@
#!/usr/bin/env sh
# YES_ZSH YES_BASH YES_DASH YES_ASH
clash() { ### @- run a command through 9 different shells.
clash() { ### @- run a command through 12 different shells.
### only returns false when no arguments are given.
[ $# != 0 ] || return
for sh in ash bash dash ksh mksh osh posh yash zsh; do
printf '\033[7m %s \033[m\n' "trying $sh"
for sh in ash bash dash hush ksh loksh mksh oksh osh posh yash zsh; do
printf >&2 '\033[7m %s \033[m\n' "trying $sh"
"$sh" "$@"
printf >&2 '\033[100m $?=%s \033[m\n' $?
done
true
}