The problem with "vanilla" Bourne shell is that there's no such thing; the behavior depends on the particular implementation. Most modern /bin/shes have POSIX features, but differ in the details. I have a habit of falling back to really ancient Bourne features when I go into "sh-compatibility" mode, which was helpful 30 years ago but is usually overboard on modern systems, even embedded ones. :)
Anyway, here's a generic countdown loop that works even in very old shells, yet still works fine in modern bash/dash/ksh/zsh/etc. It does require the expr command, which is a pretty safe requirement.
i=10
while [ $i -gt 0 ]; do
...
i=`expr $i - 1`
done
So if your embedded system has printf, here's your script, with the same "default to 10 if no argument specified" behavior:
#!/bin/sh
n=$1
i=${n-10}
while [ $i -gt 0 ]; do
printf '\r%s ' "$i"
sleep 1
done
(The first two lines can probably be replaced with just i=${1-10}, but some - again, ancient - shells didn't like applying special parameter expansions to numeric parameters.)
If the system doesn't have printf, then it becomes problematic; with only the shell's built-in echo (or no builtin and some randomly selected implementation of /bin/echo), there's no guaranteed way to do either of those things (echo a special character or prevent the newline). You might be able to use \r or \015 to get the carriage return. You might need -e to get the shell to recognize those (but that might just wind up echoing a literal -e). Putting a literal carriage return inside the script will probably work but makes maintaining the script a pain.
Similarly, -n might squash the newline, but might just echo a literal -n. The earliest way to squash newlines with echo used the special sequence \c where the newline would naturally go; this still works with some versions of /bin/echo (including the one on Mac OS X) or in conjunction with bash's builtin echo's -e option.
So what seems to be the simplest part of the script might be the part that makes you reach for awk.
/bin/bash, and I know I can't use things like bash parameter expansion. It's a pretty limited system - it doesn't identify itself when I log in, and it has nouname. So sorry, let's just assume Bourne. – Graham Jan 13 at 4:38