Re: rendering foreign characters in apache?

2011-01-07 Thread Ricardo Ramírez
Hi, take a look to this file: /etc/apache2/conf.d/charset By default have commented the line *AddDefaultCharset UTF-8* uncomment that line and reload apache, maybe help you Regards. 2011/1/7 Camaleón > On Fri, 07 Jan 2011 03:51:58 -0500, Zachary Uram wrote: > > > Running apache2 on Debian tes

Re: edit multiple files under multiple directories/folders

2010-11-26 Thread Ricardo Ramírez
Hi, maybe something like this: PORT=8079;for i in $(find . -iname "server.xml"|sort); do let PORT=$PORT+1; echo $PORT > $i; done or this: PORT=8079;for i in $(find . -iname "server.xml"|sort); do let PORT=$PORT+1; sed -i -e "s/actualPort/$PORT/g" $i; done best regards. 2010/11/26 Kaushal Shriy