I need to parse a command line in elisp, something like:

(shlex-split "command \"Some file with spaces\" someother\ quote")
;;That gives ("command" "Some file with spaces" "someother quote")

How can I accomplish this in a simple way?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

(split-string-and-unquote "command \"Some file with spaces\" someother\ quote")

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.