I want to print double quotes using echo statement in shell programming.
Example:
echo \"$1,$2,$3,$4\";
prints
You should escape the " to make it visible in the output, you can do this :
"
echo \""$1"\",\""$2"\",\""$3"\",\""$4"\"