![]() |
|
|
+ Search |
![]()
|
Sep 15th, 1999 21:51
Nathan Wallace, John Millaway, Richard Lynch, Teodor Cimpoesu
Try this:
system("cd /etc ; ls -l");
or this:
chdir("/etc");
system("ls -l");
or this:
system("cd /etc \n ls -l");
or these bash variations:
system("ls -l /etc");
system("cd /etc && ls -l");