On Mar 19, 2000, Felix Lee <[EMAIL PROTECTED]> wrote:

> Alexandre Oliva <[EMAIL PROTECTED]>:
>> This assumes ASCII.  We've just removed the latest assumptions of
>> ASCII, so it wouldn't be wise to re-introduce them :-)

> oh.  hmm.  then how about using awk?
>   IFS=`awk 'BEGIN { printf " \t\n" }' /dev/null`

Did you know that shells do eat up trailing new-lines, and that's why
we can't do it this way? :-)

How about:

IFS=" "`echo; echo "    "`
                    ^^ this is a TAB

-- 
Alexandre Oliva    Enjoy Guaranį, see http://www.ic.unicamp.br/~oliva/
Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me

Reply via email to