source: trunk/essentials/sys-apps/gawk/README_d/README.sco

Last change on this file was 3076, checked in by bird, 19 years ago

gawk 3.1.5

File size: 1.7 KB
Line 
1Tue Dec 24 22:41:39 EST 1996
2
3SCO's awk has a -e option which is similar to gawk's --source option,
4allowing you to specify the script anywhere on the awk command line.
5
6This can be a problem, since gawk will install itself as `awk' in
7$(bindir). If this is ahead of /bin and /usr/bin in the search path,
8several of SCO's scripts that use -e will break, since gawk does not
9accept this option.
10
11The solution is simple. After doing a `make install', do:
12
13 rm -f /usr/local/bin/awk # or wherever it is installed.
14
15This removes the `awk' symlink so that SCO's programs will continue
16to work.
17
18If you complain to me about this, I will fuss at you for not having
19done your homework.
20
21Arnold Robbins
22arnold@gnu.org
23
24---------------------------
25Date: 14 Oct 1997 12:17 +0000
26From: Leigh Hebblethwaite <LHebblethwaite@transoft.com>
27To: bug-gnu-utils@prep.ai.mit.edu
28To: arnold@gnu.org
29
30I've just built gawk 3.0.3 on my system and have experienced a problem
31with the routine pipeio2.awk in the test suite. However the problem
32appears to be in the tr command rather than gawk.
33
34I'm using SCO Open Server 5. On the version I have there appears to be
35a problem with tr such that:
36
37 tr [0-9]. ...........
38
39does NOT translate 9s. This means that the output from:
40
41 echo " 5 6 7 8 9 10 11" | tr [0-9]. ...........
42
43is:
44
45 . . . . 9 .. ..
46
47This problem causes the pipeio2 test to be reported as a failure.
48
49Note that the following variation on the tr command works fine:
50
51 tr 0123456789. ...........
52
53For your info the details of my system are summarised by the out put
54of the uname -X command, which is:
55
56System = SCO_SV
57Node = sgscos5
58Release = 3.2v5.0.2
59KernelID = 96/01/23
60Machine = Pentium
61BusType = EISA
62Serial = 4EC023443
63Users = 5-user
64OEM# = 0
65Origin# = 1
66NumCPU = 1
67
68
Note: See TracBrowser for help on using the repository browser.