I am programming a scrit in perl... this script must list a the folders and files i have inside a especific folder, but inside this forder there are directories that have "ç" and for this reasing i just get the char "‡" is there some other option to be done for me? i tried the following code but it s not working:
$cmd = `dir /D /B C:\\TMP\\search\\ZR_B`;
$cmd =~ s/‡/ç/g;
is there another way to loead the directories inside a especific folder and still get the "ç" ???
i thanks
rogerio
#
#$str = "" . $dir;
$cmd = `dir /D /B C:\\TMP\\search\\ZR_B`;
# print @cmd;
chomp($cmd);
$cmd =~ s/‡/ç/g;
print $cmd;
#
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]