I came across the below sed statement in our shell script.
sed -n "/set -A $REC/,/#${REC}_END/p"
I know that -n option suppresses the automatic printing and p is to display.
Are the contents inside /../ a plain string or another command is being used in the above statement? (set -A)