home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 419b.lha / GNU_Awk_v2.10_Beta / PROBLEMS < prev    next >
Text File  |  1990-10-01  |  633b  |  20 lines

  1. This is a list of known problems in gawk 2.10.
  2. Hopefully they will all be fixed in the next major release of gawk.
  3.  
  4. Please keep in mind that this is still beta software and the code
  5. is still undergoing significant evolution.
  6.  
  7. 1. %g does not truncate non-significant zeros.
  8.    gawk 'BEGIN { printf "%g\n", 1 }' should print "1", not "1.000000".
  9.  
  10. 2. %d doesn't quite work either:
  11.    echo 1 | gawk '{ printf "%0.2d\n", $1 }' should print "01", not "1".
  12.  
  13. 3. The debugging code does not print redirection info.
  14.  
  15. 4. The scanner needs an overhaul.
  16.  
  17. 5. The source code files could probably stand some reorganization as well.
  18.  
  19. Arnold Robbins
  20.