Search Results

Search: Posts Made By: MadeInGermany
3,457
Posted By MadeInGermany
Omit the explicit \" quotes. I think you had the...
Omit the explicit \" quotes. I think you had the quotes on the command line, to prevent the shell from word-splitting (each word becomes an argument).
And, since you are going to use a while loop,...
3,457
Posted By MadeInGermany
For a simple concatenation of the lines, consider...
For a simple concatenation of the lines, consider paste
paste file1 file2More flexible is the shell
while read L1 <&3 && read L2 <&4
do
echo "$L1 #### $L2"
done 3< file1 4< file2
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 10:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy