diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 13:22:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 13:22:00 +0300 |
commit | 6cc7d587a710606d3fe52222707739c7cc1b8651 (patch) | |
tree | 2b6360852d8f966bd83eeb6efd8af90f8e9b83f9 /test/pipeio2.awk | |
parent | e888f1834b88270590b7e04d64c03c75863e4565 (diff) | |
download | gawk-6cc7d587a710606d3fe52222707739c7cc1b8651.tar.gz |
Move to gawk-3.1.3.gawk-3.1.3
Diffstat (limited to 'test/pipeio2.awk')
-rw-r--r-- | test/pipeio2.awk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/pipeio2.awk b/test/pipeio2.awk index 32d09eee..dbf354bf 100644 --- a/test/pipeio2.awk +++ b/test/pipeio2.awk @@ -28,7 +28,8 @@ BEGIN { while ((com | getline fnam) > 0) { # com_tr = "echo " fnam " | tr [0-9]. ..........." - com_tr = "echo " fnam " | sed 's/[0-9]/./g'" +# com_tr = "echo " fnam " | sed 's/[0-9]/./g'" + com_tr = "echo " fnam " | sed \"s/[0-9]/./g\"" # print "\'" com_tr "\'" print "'" com_tr "'" |