The blog for freshly-minted Solaris sysadmins
Solaris "echo" doesn't know about the -n switch, try it and see:
# echo -n test -n test #
To get the right behaviour you need "\c", which you use like this:
# echo "test \c" test #
No comments:
Post a Comment