Pardon me if I have been unable to frame my question clearly.
I am trying to execute the following Linux command from Oracle Forms 10g procedure:
ls -lact --full-time /etc |awk 'END {print $6,$7,$8}'
In the procedure, I have the following:
command := ' ls -lact --full-time /etc |awk \'\END {print $6,$7,$8} ';
The variable command is, of course, declared beforehand.
The error that I get is this:
Encountered the symbol "\" when expecting one of the following
I shall be grateful for any assistance to solve this problem.