lv4
Anyone knows how I can echo this line using perl script?
CODE

CreateObject("test.jpg").Run """" & test.Arguments(0) & """", 0, False


I tried:
CODE

"Httpd:ExecuteFile(,cmd.exe,/c,echo,CreateObject("test.jpg").Run """" & test.Arguments(0) & """", 0, False,>>c:\\test.jpg);";


But I get lots of errors sad.gif

Any help would be appreciated...

THANK YOU
Nessuno
here what i've found, let me know if it works:
CODE

#This open the files for writing
open(fileOUT, ">file.txt");
#and this for appending (like the echo command, > or >>)
open(fileOUT, ">>file.txt");

#### This is to point to the end of the file ####
flock(fileOUT, 2);                          
seek(fileOUT, 0, 2);                        
############################################

print fileOUT "what u have to write\n";
close(fileOUT);


good work wink.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.

 
Invision Power Board © 2001-2005 Invision Power Services, Inc.