faqts : Computers : Programming : Languages : Perl

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

61 of 85 people (72%) answered Yes
Recently 7 of 10 people (70%) answered Yes

Entry

how to execute linux commands using perl / working but with some commands only

Sep 19th, 2003 09:52
Vincent Milette, Suyash Jain,


Many ways to do it

1- $var = `command`; # those are back ticks
2- system(mkdir $folder);
3-exec(command);


HTH