Hi Phill,

> Gesendet: Samstag, 07. Oktober 2023 um 07:54 Uhr
> Von: "Phill Carter via Emc-developers" <emc-developers@lists.sourceforge.net>
> An: "linuxcnc-developers" <emc-developers@lists.sourceforge.net>
> Cc: "Phill Carter" <phill...@icloud.com>
> Betreff: Re: [Emc-developers] lost file or mind?
>
>
> > On 7 Oct 2023, at 3:32 pm, Thomas J Powderly <tjt...@gmail.com> wrote:
> >
> > Hello,
> >
> > I cannot find a file used in my .ini /
> > But the .ini runs fine from picker
> >
> > the 'lost' file from the iniT ...
> >
> > EMBED_TAB_COMMAND = pyvcp bars.xml
>
> The file name would be bars.xml
>
>
>
> >
> >
> > After a lot of searching, and failing to find the file,
> >
> > ( searching ~/linuxcnc and all branches of #PATH )
> >
> > I used the 'find' command on the _entire_ filesystem
> >
> > tomp@ThaiTowerD10:/$ cd /
> > tomp@ThaiTowerD10:/$ find . pyvcp_bars.xml
> > ... after a long time  I see:
> > find: 'pyvcp_bars.xml': No such file or directory

You omitted the "-name" argument, so the call would be
find . -name pyvcp_bars.xml

but considering the pointer by Thomas on the file bars.xml (pyvcp is the 
command to which bars.xml is the first argument from how I read this), you 
would search

find . -name bars.xml

You can also try

locate bars.xml

HTH
Steffen



_______________________________________________
Emc-developers mailing list
Emc-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-developers

Reply via email to