Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 elisp 中解析一个命令行,例如:
(shlex-split "command \"Some file with spaces\" someother\ quote") ;;That gives ("command" "Some file with spaces" "someother quote")
我怎样才能以简单的方式做到这一点?
(split-string-and-unquote "command \"Some file with spaces\" someother\quote")