At Tue, 29 Jul 2003 23:30:18 , Voytek Eymont wrote: > [EMAIL PROTECTED] voytek]# tr -d '[\200-\377]' <httpd.linux > unixfile1 > didn't work...
no it wouldn't since \r is \015, which isn't between \200 and \377. (see "man ascii") the above command would strip "8 bit characters" (the top half of the charset - which has bit 8 set). \r and the other "control characters" are below \040, not in the top half of the charset. -- - Gus -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
