I have a big list like
Afghanistan
Albania
Algeria
Andorra
Angola
.
.
How do I make the list like following automatically with some linux utility without having to do it manually?
"Afghanistan",
"Albania",
"Algeria",
"Andorra",
"Angola",
.
.
For example, using AWK:
awk '{ print "\"" $0 "\","; }' <myFile