Re: Join Lines
- From: superpollo <utente@xxxxxxxxxxx>
- Date: Sun, 06 Jun 2010 11:50:33 +0200
shulamitm ha scritto:
Hello,
I'm looking for solution to the following problem:
I have a file contains 2 fileds, but in a few rows, the second field
go down (without spaces) to the next line.
How can I join the splitted lines?
For exmple:
I need to change the following :
ERROR1 1
ERROR2 1
WARNING1 0
WARNING2
0
WARNING3
0
ERROR3 1
To:
ERROR1 1
ERROR2 1
WARNING1 0
WARNING2 0
WARNING3 0
ERROR3 1
Thanks in advance!
if you dont mind the whitespace:
~/superpollo$ cat fields.sh
#!/usr/bin/env bash
while read A B
do
echo -n $A" "
if [ -z "$B" ]
then
read B
echo $B
else
echo $B
fi
done
~/superpollo$ cat fields
ERROR1 1
ERROR2 1
WARNING1 0
WARNING2
0
WARNING3
0
ERROR3 1
~/superpollo$ ./fields.sh < fields
ERROR1 1
ERROR2 1
WARNING1 0
WARNING2 0
WARNING3 0
ERROR3 1
~/superpollo$
bye
--
Il valore 96 sarebbe,Volendo, un ipercubo in i.
.
- Follow-Ups:
- Re: Join Lines
- From: shulamitm
- Re: Join Lines
- References:
- Join Lines
- From: shulamitm
- Join Lines
- Prev by Date: Join Lines
- Next by Date: Re: Join Lines
- Previous by thread: Join Lines
- Next by thread: Re: Join Lines
- Index(es):
Relevant Pages
|