Hi there,
I've an input file1 as follows:
1001
1002
1003
1004
1005
I would like to have an output file2 as follows:
Numbers are 1001/ 1002/ 1003/ 1004/ 1005/
Any help is appreciated.
Hi there,
I've an input file1 as follows:
1001
1002
1003
1004
1005
I would like to have an output file2 as follows:
Numbers are 1001/ 1002/ 1003/ 1004/ 1005/
Any help is appreciated.
touch file2
for i in `cat file1`; do
echo -n $i/ >>file2
echo -n " " >>file2
done
echo >>file2
Hi kodak,
Thanks. Works great.
Cheers