Hi I need to create a simple command shell in Perl, however I am throughly stumped on where to begin. I would like to encorporate some basic sh files into it. Any suggestions on where to start???
every perl script is cmd, just put this on very first line...
Code:
#!/usr/bin/perl
then on shell, write this cmd
(> is shell prompt)
Code:
> chmod +x script_name
and "encorporate" existing sh files in script:
use "system" (if you donot want shell script output in Perl)
or use `` (backquotes, if you want shell script output in Perl)