http://www.perlmonks.org?node_id=1074485


in reply to Re^2: Splitting up quoted/escaped command line arguments
in thread Splitting up quoted/escaped command line arguments

OK. This mixture of approaches seems to be working so far: I haven't been able to break it yet. Can anyone break this?

(Please see UPDATE 2 to the OP)

Tommy
A mistake can be valuable or costly, depending on how faithfully you pursue correction

Replies are listed 'Best First'.
Re^4: Splitting up quoted/escaped command line arguments
by choroba (Cardinal) on Feb 11, 2014 at 20:46 UTC
    'a'\''b' Seems to break update 4.
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

      That's ok with me, because in Linux-ese (bash/sh/ksh), you can't escape a single quote. It's one of the most annoying things and I find it reeeally bothersome. This is why I don't try to accommodate for a "\'" sequence in update 4. Despite the fact that I don't want these commands to go to the shell, they are being written by people who deal with the shell almost exclusively: system admins. This much I can assume: that they won't be putting in commands that have syntax which outright fails to run on its own.

      Tommy
      A mistake can be valuable or costly, depending on how faithfully you pursue correction
        Yes, you can escape a single quote - outside single quotes.
        $ echo 'a'\''b' a'b
        لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ