So I want to include in a shell script a sqlplus command, the problem is that one of the parameters could be a double quote char (") but sqlplus thinks is the start of a string.
This is the command:
sqlplus username/ @file.sql " /home/myuser/Desktop/
I already enclosed them in: single quote, double single quote, double quote, double double quote. Also tried to escape the char using \
but nothing works.
The most I'm getting is that it waits me to close the 'string' or the following error:
string beginning "" /home/my..." missing terminating quote (").