Hi i am trying to use the system() command to run some linux command using perl script...
Eg.. Deleting files.
system("rm $filename");
However, when my $filename contain " character, the sommand wont work.
Any idea how to go around this?
Eg.. Deleting files.
system("rm $filename");
However, when my $filename contain " character, the sommand wont work.
Any idea how to go around this?
Comment