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\"スペースのあるファイル\"someother\ quote")