On Mon, January 30, 2006 4:27 pm, Veijo Ryhänen said: > Hello, > > (First of all, I am very sorry that I haven't find time to answer those > numerous questions which > raise up after my previous email postings to this list, because I have > been > so busy > when building my xnee -scripts. Hopefully I will answer to them later.)
I have a hard time keeping up as well. > I am not sure that is this bug or not. Any way, I would like to use cnee > with standard input > but I don't know how shoul I do that ? 1) I don't think this works for a command like echo either. I don't think it is anything wrong with Xnee in this case. 2) You'd be better off with the script functions instead: Read the NEWS for 2.03: http://savannah.gnu.org/forum/forum.php?forum_id=4210 3) Or you, could do like this: printf "0,6,71,59,0,0,0,533851943\n0,6,66,57,0,0,0,533852527\n" | cnee --replay > #!/bin/bash > testHereDocumentStructure() > { > echo "testHereDocumentStructure() function call" > cat -<<EOF_cat > 0,6,71,59,0,0,0,533851943 > 0,6,66,57,0,0,0,533852527 > EOF_cat > } You waste a lot of resources if you start xnee every time you want a simple thing to be done. Use the script functions :) > clickXcutselButtons() > { > echo -e "\nclickXcutselButtons() function call" > cnee_binary -rep -f -<<EOF_xcutsel.xnee > 0,6,71,59,0,0,0,533851943 > 0,6,66,57,0,0,0,533852527 > EOF_xcutsel.xnee > } > > testHereDocumentStructure > clickXcutselButtons > - - - - - - - - - - > > and here is the script output when running it: > > testHereDocumentStructure() function call > 0,6,71,59,0,0,0,533851943 > 0,6,66,57,0,0,0,533852527 > > clickXcutselButtons() function call > Xnee failed to start > Error number: 2 > Error string: 'Xnee can't find or create the file you are lookig for > ' > Solution string: 'Check the path and the permissions' > > There is something wrong in my script or something wrong in cnee ? > > Veijo Ryhänen > _______________________________________________ > Xnee-devel mailing list > [email protected] > http://lists.gnu.org/mailman/listinfo/xnee-devel > _______________________________________________ Xnee-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/xnee-devel
