|
From: Patrick D. <pd...@gm...> - 2019-05-27 15:52:03
|
OK,
Do not worry. Every thing is under control now.
===========================================================================
Patrick DUPRÉ | | email: pd...@gm...
Laboratoire interdisciplinaire Carnot de Bourgogne
9 Avenue Alain Savary, BP 47870, 21078 DIJON Cedex FRANCE
Tel: +33 (0)380395988
===========================================================================
> Sent: Monday, May 27, 2019 at 5:43 PM
> From: "walter harms" <wh...@bf...>
> To: gnu...@li...
> Cc: "Patrick Dupre" <pd...@gm...>
> Subject: Re: [Gnuplot-info] paste + awk
>
>
>
> Am 24.05.2019 17:20, schrieb Patrick Dupre:
> > Hello,
> >
> > I wanted to run such a command, but it does not work.
> >
> > plot "< paste . test.asc . |awk -F',' '(NR>1) {print ($1, $2)}' "
> > or
> > plot "< paste " . test.asc . "|awk -F',' '(NR>1) {print ($1, $2)}' "
> >
> > Actually, I want to make a paste of 2 files, before awk
> > Here I tried with 1 file
> >
>
>
> this works for me:
> seq 5 -1 1 >f1
> seq 1 5 >f2
>
> gnuplot> plot "< paste f2 f1" u 1:2 w l
>
> re,
> wh
>
|