[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Is quotes in tramp-find-inline-compress needed in MS-Windows?
From: |
Chris Zheng |
Subject: |
Re: Is quotes in tramp-find-inline-compress needed in MS-Windows? |
Date: |
Fri, 02 Feb 2018 10:54:12 +0800 |
User-agent: |
Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/27.0 (x86_64-w64-mingw32) MULE/6.0 (HANACHIRUSATO) |
On Fri, 02 Feb 2018 10:57:40 +0800,
Michael Albinus wrote:
Hello Michael,
> Chris Zheng <address@hidden> writes:
>
>
> Hi Chris,
>
>
> The backslashes in the code snippet above are needed to mask the
> quotation mark in the string. They do not arrive the target shell. Try
>
> M-& echo xyzzy | "gzip" | "gzip -d" RET
I thought about this command, and the results are
M-& echo xyzzy | "gzip" | "gzip -d" RET
⇒ Not a command error for "gzip -d".
M-& echo xyzzy | "gzip" | "gzip" -d RET
⇒ Success.
So the best approach is to quote only the program name. Thank you for
the reply and the clarification of backslashes.
Best wishes,
Chris
> Best regards, Michael.