Hi All,
i need to be able to run a command like this
myperlscipt.pl username=bob password=abc123
which will take the data from username and password and place it in my script below, as variables $username and $password
system ("adduser $username -p $password");
any help will be much appreciated