Hello,
I have found a nice utility
http://www.novell.com/communities/node/389/adm+file+utilities+2+5
that has two problems:
1) It creates directories and files but it uses the \ backslash so it
does not work on a linux machine.
Is there a constant or a function that give back the right character ( /
for linux, \ for windows console ) ?
2) It does ignore Umlaute ( special german characters )
is there a clean way in perl to convert all the umlaute to ascii
standard characters while reading from a file or as in this case in a
array ?
The script reads in the file once
open(ADMFILE,$admFile);
@all=<ADMFILE>;
close(ADMFILE);
foreach(@all) {
.....
Thanks
Andreas
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/