im using system command in perl to execute su command like this
system("su -");
The above command works fine..
But if my command is this
su -c "echo hello"
Then how do i embed this command into system command of perl?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You simple need quote escaping, either by using a different quote set:
Or by “escaping” the quotes themselves:
Or as individual arguments, as
mu is too shortpoints out: