help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fwd: Problems with file encoding


From: HomeRun4711
Subject: Re: Fwd: Problems with file encoding
Date: Sat, 14 May 2011 12:25:49 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10

I gave it a try using the Linux-version of Octave, and the
problem exists there, too.


Am 13.05.2011 10:37, schrieb Fritz Fischer:
---------- Forwarded message ----------
From: Fritz Fischer<address@hidden>
Date: 2011/5/13
Subject: Re: Problems with file encoding
To: Jordi GutiƩrrez Hermoso<address@hidden>


For now I use a workaround script that I found it somewhere in the web
to convert all files in a folder to ANSI, which is supported by Octave:

---

@Echo Off
echo UniCode to ANSI converter for TXT.
md ~ANSI
for %%a in (*.txt *.?txt?) do type "%%a">"~ANSI\%%a"
for %%a in (*.txt *.?txt?) do attrib -r -h -s "%%a"
cd ~ANSI
for %%a in (*.txt *.?txt?) do move /y "%%a" ..
cd..
rd ~ANSI

---



reply via email to

[Prev in Thread] Current Thread [Next in Thread]