how to download file then run it with hide mode! in python
Posted
by Str1k3r
on Stack Overflow
See other posts from Stack Overflow
or by Str1k3r
Published on 2010-06-02T09:21:53Z
Indexed on
2010/06/02
9:23 UTC
Read the original article
Hit count: 236
hello i was searching about how to download file then run it ! such as in perl
#!/usr/bin/perl -w
use LWP::Simple;
getstore('http://example.com/file.bat',
'sfile.bat');
system('file.bat');
ummmm so can i made like that in python ?
umm i guess we have to use urllib and os in python ? or what :S
© Stack Overflow or respective owner