tags:

views:

78

answers:

4

I have two files

File 1:

7118

7457

7591

7539

8001

File 2:

5003

5008

5011

5026

5028

5029

5031

Output that i need

7118,5003

7457,5003

7591,5003

7539,5003

8001,5003

7118,5008

7457,5008

7591,5008

7539,5008

8001,5008

so on.....

A: 

I'll use a perl script for that.

#!/usr/bin/perl

use strict;

my @file1 = loadf("file1.txt");
my @file2 = loadf("file2.txt");

foreach my $line2 (@file2) {
    $line2 =~ s/^\s+//;
    $line2 =~ s/\s+$//;
    for (my $i = 0; $i < @file1; $i++) {
        $file1[$i] =~ s/^\s+//;
        $file1[$i] =~ s/\s+$//;
        #do the output
        print $file1[$i] . "," . $line2 . "\n";
    }

}

sub loadf($) {
    my @file = ( );
    open(FILE, $_[0] . "\n") or die("[-] Couldn't Open " . $_[0] . "\n");
    @file = <FILE>;
    close(FILE);
    return @file;
}
Ruel
Ruel thanks it works fine. but you have restrict the input file with 5. but that is an example i given. i don't know how many rows in my real file. i has to do for more like this.
gyrous
I have updated it, and it will count the number of lines a file has.
Ruel
A: 

And a bash function:

function cross() {
    exec 3<$2
    while read -u 3 a ; do
        exec 4<$1
        while read -u 4 b ; do
            echo $b,$a
        done
    done
    3<&-
    4<&-
}
outis
+3  A: 
awk 'FNR==NR{a[$0];next}{ for(i in a) print i,$0 }' OFS="," file file1
ghostdog74
user131527 thanks it works great..
gyrous
A: 
cat file1 | (exec 3< file2; while read A && read B <&3; do echo "$A,$B"; done)
hluk