Have to make a header for a csv file from unix shell script. It should be like below.
"Name","Place","Pincode","officename"
Tried like below. But it is not working
s_header= echo "Name","Place","Pincode","officename"
echo s_header>>filename.csv
Thanks you