1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00
This commit is contained in:
Jim Meyering
1996-02-21 19:53:35 +00:00
parent 4d81490eb3
commit 79b86f69e6
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
#!/p/bin/perl5.000 -w
#!/usr/bin/perl -w
$join = 'join';
$join = '/usr/bin/join';

View File

@@ -47,3 +47,6 @@
('8a', '-a1 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\n", 0);
('8b', '-a1 -a2 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\ne .\n", 0);
# From David Dyck
('9a', '', " a 1\n b 2\n", " a Y\n b Z\n", "a 1 Y\nb 2 Z\n", 0);