On 10/16/2016 04:02 AM, ToddAndMargo wrote:> On 10/16/2016 03:56 AM, ToddAndMargo wrote: >> Hi All, >> >> How do I get this command to work in Linux: >> >> $ echo wineclip | wine clip.exe >> >> Many thanks, >> -T >> >> > echo wineclip | wine cmd /c clip.exe > > doesn't work either >Interesting. $ echo wineclip | wine cmd /c echo Echo is ON This means it did not pick up the pipe. What are the rules for piping stuff to Windows programs with Wine? Many thanks, -T -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Computers are like air conditioners. They malfunction when you open windows ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On 16 October 2016 at 14:54, ToddAndMargo <ToddAndMargo at zoho.com> wrote:> What are the rules for piping stuff to Windows > programs with Wine?I don't think you can pipe things to Windows programs at all, on any OS. -- Liam Proven • Profile: http://lproven.livejournal.com/profile Email: lproven at cix.co.uk • GMail/Twitter/Facebook/Flickr: lproven Skype/MSN: lproven at hotmail.com • LinkedIn/AIM/Yahoo: liamproven Cell/Mobiles: +44 7939-087884 (UK) • +420 702 829 053 (ČR)
On 10/16/2016 09:17 AM, Liam Proven wrote:> On 16 October 2016 at 14:54, ToddAndMargo <ToddAndMargo at zoho.com> wrote: >> What are the rules for piping stuff to Windows >> programs with Wine? > > I don't think you can pipe things to Windows programs at all, on any OS. >Sure you can. Do it all the time. | Pipe the output from one command into another command. & Run two commands with a single command line, e.g. copy x.txt y.txt & copy a.dat b.dat || Run the command to the right only if ErrorLevel > 0 copy x.txt z.txt || echo Error! && Run the command to the right only if ErrorLevel = 0 copy x.txt z.txt && echo Success! -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Computers are like air conditioners. They malfunction when you open windows ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~