Vykook / acme-sac

Automatically exported from code.google.com/p/acme-sac
Other
0 stars 0 forks source link

awk doesn't work properly #25

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. create a file hello.awk with contents: BEGIN { print "Hello world" }
2. execute this file with command: awk -f hello.awk
3.

What is the expected output? What do you see instead?
The expected output should be a Hello world string. Instead it outputs the 
following:
awk: can't open file hello.awk
 source line number 1 source file hello.awk
 context is 
    >>> <<<

What version of the product are you using? On what operating system?
I'm using acme-0.13 on Windows XP Professional SP 2

Please provide any additional information below.
If I try the following:   awk 'BEGIN { print "Hello world" }'  in a sense, 
without storing the script in a file it works fine.

Original issue reported on code.google.com by t.nikito...@gmail.com on 14 Aug 2009 at 8:22