Escape Char for double quote

Hi,

what is the escape char for " in shell script. following way i want to write file using echo command

echo "LOAD DATA
infile '&1'
APPEND
INTO TABLE dummy_table
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"' - single quote and double quote and single quote - gives error here what is the esacpe char
TRAILING NULLCOLS " > somfile.ctl

Hi All,

got the solutions....

echo "LOAD DATA
infile '&1'
APPEND
INTO TABLE dummy_table
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '\"'
TRAILING NULLCOLS " > somfile.ctl