Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file,

a1
a2
b1
b2
c1
c2
...

I want to join by two lines so one can sort it:

a1:a2
b1:b2
c1:c2
...

I'm using bash. the read function will eat the leading space, which is undesired. And I hate to write simple stupid C programs.

Then, I can use tr : "\n" to split the joined file back to two files.

share|improve this question
“I hate to write simple stupid C program” – easy. Learn a scripting language. That’s what they’re there for. – Konrad Rudolph Nov 15 '10 at 15:45

6 Answers

up vote 9 down vote accepted

paste -s -d ':\n' file should do it.

For example:

% cat f
a1
a2
b1
b2
% paste -s -d ':\n' f
a1:a2
b1:b2
share|improve this answer
+1, that is neat. – codaddict Nov 15 '10 at 8:50
sed 'N;s/\n/:/;' < srcfile > destfile
share|improve this answer
No need for input redirection, sed accepts a filename as an argument. The final semicolon is unnecessary. – Dennis Williamson Nov 15 '10 at 15:51

Looking over there I found an example that can be converted into:

sed '$!N;s/\n/:/' < file
share|improve this answer
No need for input redirection, sed accepts a filename as an argument. The $! is redundant. – Dennis Williamson Nov 15 '10 at 15:50
INDEX=0
A=""
B=""

for i in `awk '{print $1}' input`
    do
    if [ $INDEX -eq 0 ]; then
        A=$i;
        let INDEX=1;
    fi

    if [ $INDEX -eq 1 ]; then
        B=$i;
        echo $A:$B
        let INDEX=0;
    fi
done
share|improve this answer
Why not write it all in AWK? – Dennis Williamson Nov 15 '10 at 15:51
@Dennis Williamson thought I read he wanted it in BASH, but yeah, if only AWK it would be a piece of cake. – Nico Huysamen Nov 15 '10 at 17:11
awk '{line=$0; printf line; if (getline) printf ":" $0; print ""}' inputfile
share|improve this answer

edit in-place with backup:

perl -i.bak -pe 's/\n\Z/:/ if $.%2' file

edit in-place no backup:

perl -i -pe 's/\n\Z/:/ if $.%2' file
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.