in reply to Re^2: [SHELL] Detect backslash in command line args
in thread [SHELL] Detect backslash in command line args

You can probably demonstrate that effect with:

echo comma\nd with backslash | cat -v

But the shell will parse the backslash - so in one sense, you don't actually _need_ to detect it, because it isn't there any more by the time your script uses it.