I need to write a script that will interleave the content of two different files. For example, executing './inter2files file1 file2' will give me:
file1-line1
file2*line1
file1-line2
file2*line2
The code I have so far is:
exec 30< file1
exec 40< file2
read line1 <& 30
read line2 <& 40
echo $line1
echo $line2
