|
From: Ethan M. <eam...@gm...> - 2017-03-10 18:47:58
|
On Fri, Mar 10, 2017 at 10:36 AM, Patrick Dupre <pd...@gm...> wrote:
> Hello,
>
> This works
> plot "< paste F0016CH2.csv | awk '!/^\#/ { print $2 }' "
> But this does not work
> plot "< paste . ARG1 | awk '!/^\#/ { print $2 }' "
> neither
> plot "< paste @ARG1 | awk '!/^\#/ { print $2 }' "
>
> Can I get your help?
>From "help macros"
Macro expansion does not occur inside either single or double quotes.
> However macro expansion does occur inside backquotes.
|