Τρομοκρατιστής ✭ on Nostr: npub1n86kc…50tl7 #!/bin/sh list="dash ash bash mksh ksh yash zsh" ...
npub1n86kc0f7y565ucqusr30wtxn4xxyxt07wgfrmhnvhd9e3zypzxfs950tl7 (npub1n86…0tl7) #!/bin/sh
list="dash ash bash mksh ksh yash zsh"
tmbin='/usr/bin/time -f %e.s..%M.KB'
for s in $list; do
printf "%10s: " $s
if command -vp $s 2>&1 > /dev/null ; then
$tmbin $s -c 'for i in $(seq 1 1000000); do test $i = 1; done; exit 0'
fi
done
list="dash ash bash mksh ksh yash zsh"
tmbin='/usr/bin/time -f %e.s..%M.KB'
for s in $list; do
printf "%10s: " $s
if command -vp $s 2>&1 > /dev/null ; then
$tmbin $s -c 'for i in $(seq 1 1000000); do test $i = 1; done; exit 0'
fi
done