How to Pass argument with double quotes? - Shell Scripting Views : 247
Tagged in : Shell Scripting
0 0
Send mail
Pass argument with double quotes
If you want to pass argument with double quotes just follow the below step
(*)Create file and type as echo $1
(*)Execute file as sh test.sh 'pp"'
Output
pp"

Other Method
Execute file as sh test.sh pp\"
By Nirmala, On - 2010-01-25



    Login to add Comments .