On 10 August 2010 15:10, Federico G. Benavento <[email protected]> wrote: > this is probably related to the fact that grap(1) is an APE program, > and sh actually execs sh, not rc...
see this line: >> rc: line 2: token ')': syntax error telling that rc is executed. As to why there is the syntax error, as I wrote couple of hours ago, the reason is that rc tries to execute /echo 23.45)/ which is syntactically wrong. What is wanted is /echo '23.45)'/, so that ')' is within aposrophes. R
