redo-sh.do: add 'posh' as another possible shell.

It fails, but who knows, maybe someday it won't.
This commit is contained in:
Avery Pennarun 2011-02-28 22:11:28 -08:00
commit 97eea66830

View file

@ -7,7 +7,7 @@ mkdir $1.new
GOOD=
WARN=
for sh in dash sh /usr/xpg4/bin/sh ash mksh ksh ksh88 ksh93 pdksh \
for sh in dash sh /usr/xpg4/bin/sh ash posh mksh ksh ksh88 ksh93 pdksh \
bash zsh busybox; do
printf "Testing %s... " "$sh"
FOUND=`which $sh 2>/dev/null` || { echo "missing"; continue; }