> how can i open a gnome file browser through perl ?
Try this:
system("/usr/bin/nautilus --browser --no-desktop .");
Or:
system("/usr/bin/nautilus --browser --no-desktop . &");
If you want to run it in the background (and let your Perl program continue).

Hope that helps,
Ricky

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to