Re: jonction de lignes

Pàgina inicial

Reply to this message
Autor: serge rouveyrol
Data:  
A: Sylvain Pogodalla
CC: Michel Karatchentzeff, liste Guilde
Assumpte: Re: jonction de lignes
Sylvain Pogodalla wrote:

>Bonjour,
>
>    Michel> exemple, partant du fichier contenant les lignes
>    Michel>  A
>    Michel>  B
>    Michel>  C
>    Michel>  D
>    Michel>  E
>    Michel>  F

>
>    Michel>  je souhaite obtenir le fichier
>    Michel>  A B 
>    Michel>  C D
>    Michel>  E F

>
>Ma proposition :
>cat my_file | xargs -n2 printf "%s %s\n"
>
>S.
>
>



a l'ancienne :
ed $1 <<'EOF' 2>/dev/null
1,$s/$/ /
g/^/j
1,$p
q
EOF