First, a couple of quick news items:
What are the Top Ten Open Source productivity applications? You might be surprised.
A good open source video editor is just around the corner. The problem is, how far away is that corner. But there is hope on the horizon.
And now, for todays Bash Programming Quiz.
Create a script that processes two input files, and outputs a single data stream consisting of alternate lines from the first two files. So, if these are the input files:
File_1:
a
b
c
d
e
File_2:
1
2
3
4
5
The resulting file would be:
a
1
b
2
c
3
d
4
e
5
Submissions written in Perl or Awk will be accepted.




