On 6 March 2011 12:28, Francis Tyers <[email protected]> wrote: > El dg 06 de 03 de 2011 a les 14:25 +0300, en/na pavel suvorov va > escriure: >> - "Sygwin Bash Shell" don't understand the "find". It write "Command not >> found" >> - But no matter.. I can search via Windows.. and.. >> - There is the only file "apertium" without extension - >> "C:\Apertium\home\apertium-install\apertium\apertium\apertium" >> - But if I try to run this file from "Cygwin bash shell", it write >> "Command not found" >> - So, I don't know what I can do more.. > > You might have to change '\' to '/' in the bash shell. Perhaps you could > also try just running part of the pipeline. >
You can't use Windows paths in Cygwin. Cygwin creates its own Unix-like directory tree (and uses / for those), so you have to refer to paths in those terms. There is a tool called cygpath that will try to convert the windows path to a cygwin (Unix-like) path, but you will need to quote the path, and escape all the slashes (i.e., instead of C:\Windows you type "C:\\Windows") e.g.: cygpath "C:\\Windows\\System32" will give something like /cygdrive/c/Windows/System32 > So find where the program 'lt-proc' is, and the binary file > 'en-es.automorf.bin' and do something like: > Use 'which lt-proc', not 'find' > echo "test" | lt-proc en-es.automorf.bin > > Fran > > PS. Please keep the mailing list in CC, that way people who are more > likely to have access to Windows can see your problems. > > > ------------------------------------------------------------------------------ > What You Don't Know About Data Connectivity CAN Hurt You > This paper provides an overview of data connectivity, details > its effect on application quality, and explores various alternative > solutions. http://p.sf.net/sfu/progress-d2d > _______________________________________________ > Apertium-stuff mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/apertium-stuff > -- <Leftmost> jimregan, that's because deep inside you, you are evil. <Leftmost> Also not-so-deep inside you. ------------------------------------------------------------------------------ What You Don't Know About Data Connectivity CAN Hurt You This paper provides an overview of data connectivity, details its effect on application quality, and explores various alternative solutions. http://p.sf.net/sfu/progress-d2d _______________________________________________ Apertium-stuff mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/apertium-stuff
