Quotes

Shell Script - Remove Double Quote (“”) from a String
Remove Double Quote from a String The first expression 's/^//' will remove the starting quote from the string. Second expression 's/$//' will remove t...