In article <1186 at lamc.UUCP> kdavis at lamc.UUCP (Ken Davis) writes:
>I use a pseudoshell for uucico logins called uucicotime : it follows:
[...]
> if [ $# != 0 ]
> then
> exec /usr/lib/uucp/uucico "$@"
> else
> exec /usr/lib/uucp/uucico
> fi
What you need here is:
exec /usr/lib/uucp/uucico ${@+"$@"}