<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.editors.sed.user">
    <title>gmane.editors.sed.user</title>
    <link>http://blog.gmane.org/gmane.editors.sed.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5987"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5986"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5985"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5984"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5983"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5982"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5981"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5980"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5979"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5978"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5977"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5976"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5975"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5974"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5973"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5972"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5971"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5970"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5969"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.editors.sed.user/5968"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5987">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5987</link>
    <description>&lt;pre&gt;
With autosplit:

     perl -awlne'
         BEGIN{%h=`cat ./file1`=~/(.*?);(.*)/g}
         print"$_ ",$h{$F[0]}||"N\/A"
     ' ./file2

The BEGIN-block parses file1 into a hash. The print-line postfixes each 
row from file2 with the extra info.

See `perldoc perlrun` about autosplit.

&lt;/pre&gt;</description>
    <dc:creator>Ruud H.G. van Tol</dc:creator>
    <dc:date>2013-05-16T20:15:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5986">
    <title>Re: how to duplicate "columns" in a file</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5986</link>
    <description>&lt;pre&gt;
If that's all you want, it should be as simple as

  sed 's/.*/&amp;amp; &amp;amp;/' infile.txt &amp;gt; outfile.txt

If you have multiple columns and only want to delimit certain ones,
you'd have to provide more detail:  Are they tab-delimited vs.
space-delimited vs. comma-delimited?  Are fields quoted, and if so,
how?  Which columns need to be duplicated, and where do the
duplicated need to appear?

-tim


&lt;/pre&gt;</description>
    <dc:creator>Tim Chase</dc:creator>
    <dc:date>2013-05-16T18:43:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5985">
    <title>how to duplicate "columns" in a file</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5985</link>
    <description>&lt;pre&gt;Hi all,
 
hope you can help me with how to duplicate "columns" in a file:
 
before:
 
aaa
bbb
ccc
 
 
after:
 
aaa aaa
bbb bbb
ccc ccc
 
 
Thanks in advance, 
Magnus
&lt;/pre&gt;</description>
    <dc:creator>suffocator&lt; at &gt;gmx.de</dc:creator>
    <dc:date>2013-05-16T18:17:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5984">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5984</link>
    <description>&lt;pre&gt;

I was in old-school mode, avoiding holding the entire search set in 
memory.  I can't imagine any plausible circumstance where that could be 
a problem these days.
&lt;/pre&gt;</description>
    <dc:creator>Jim Hill</dc:creator>
    <dc:date>2013-05-16T16:52:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5983">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5983</link>
    <description>&lt;pre&gt;

Why not the simpler and single-pass

awk -F ' *; *' '

NR == FNR {
  a[$1] = $2
  next
}

{
  f = ( ($1 in a) ? a[$1] : "N/A" )
  print $0 " " f ";"
}

' file1 file2


I assume spacing around semicolons isn't relevant; in case it is, the
modifications are obvious (although I'd consider such an environment
slightly broken).

&lt;/pre&gt;</description>
    <dc:creator>Davide Brini</dc:creator>
    <dc:date>2013-05-16T16:36:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5982">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5982</link>
    <description>&lt;pre&gt;
I brain-farted on each key lookup being against the entire selection 
set, of course it's a hash lookup. Apologies, I guess I have to correct 
"casual" to "hasty".
&lt;/pre&gt;</description>
    <dc:creator>Jim Hill</dc:creator>
    <dc:date>2013-05-16T16:25:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5981">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5981</link>
    <description>&lt;pre&gt;

The Perl variants only reads each file's line exactly once, so is as 
optimal as it can get.

&lt;/pre&gt;</description>
    <dc:creator>Ruud H.G. van Tol</dc:creator>
    <dc:date>2013-05-16T16:04:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5980">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5980</link>
    <description>&lt;pre&gt;On 05/15/2013 11:51 PM, MOKRANI Rachid wrote:&amp;gt; Hi,
 &amp;gt;
 &amp;gt; Well this is a good solution and it work. You should send it to the
 &amp;gt; list so that others can benefit too.

ok, happy to.

awk -vFS=\; -vOFS=\; '{ printf("%04d;%s\n",$1,$0) }' file1&amp;gt;&amp;lt; at &amp;gt;file1
awk -vFS=\; -vOFS=\; '{ printf("%04d;%s\n",$1,$0) }' file2&amp;gt;&amp;lt; at &amp;gt;file2
join  -a1 -t\; -o 1.2,1.3,2.3 -eN/A &amp;lt; at &amp;gt;file2 &amp;lt; at &amp;gt;file1


So

- Therry Blanc's sed solution actually delivers what was requested, but 
I have to wonder if the O(NM) wouldn't start mattering even on today's 
hardware.

- Ruud H.G. van Tol's perl ... kinda shows perl's strengths, don't it? 
and it's O(lgN M),

- and this one's linear and probably easier on the uninitiated, but 
you'd have to tweak it to avoid multiple passes.

The O()'s are casual estimates, and unless this is for really 
industrial-strength data volumes or overeager optimizers like me I can't 
see them mattering much.

&lt;/pre&gt;</description>
    <dc:creator>Jim Hill</dc:creator>
    <dc:date>2013-05-16T15:57:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5979">
    <title>Re: Insert character x at...</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5979</link>
    <description>&lt;pre&gt;

One alternative to insert a char after a column N is to use the numeric
flag in the s command.

 $ echo 123456789 | sed 's/./&amp;amp;x/5'
12345x6789

Substitute any char (.) by itself (&amp;amp;) and an x. But only in the 5th
occurrence.




&lt;/pre&gt;</description>
    <dc:creator>Aurelio Jargas</dc:creator>
    <dc:date>2013-05-16T14:59:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5978">
    <title>Re: Insert character x at...</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5978</link>
    <description>&lt;pre&gt;
Doh, I missed the closing "\)" in there.  Should have been

  sed '/^0530/s/\(.\{31\}\)/\1x/' input.txt

which could have been reduced in this particular case to

  sed '/^0530/s/.\{31\}/&amp;amp;x/' input.txt


But that's pretty slick.  I don't often recall the /{number} flag, as
vi/vim doesn't offer it, so I don't have as much occasion to use it.

-tim


&lt;/pre&gt;</description>
    <dc:creator>Tim Chase</dc:creator>
    <dc:date>2013-05-16T15:10:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5977">
    <title>Re: Insert character x at...</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5977</link>
    <description>&lt;pre&gt;
For the original request:

  sed '/^0530/s/\(.\{31\}/\1x/' input.txt

For the followup, you can gather the rest of the characters and juggle
them accordingly:

  sed '/^0530/s/\(.\{31\}\)\(.\{2\}\)./\1x\2/' input.txt

The 31 is your insertion-position-minus-one, and the "2" in "\{2\}" is
the number of characters you want to keep after the inserted
quantity.  If you want to insert more than one character and delete
the same number of characters, you can do it with

  sed '/^0530/s/\(.\{31\}\)\(.\{2\}\).\{3\}/\1foo\2/' input.txt

where the "3" is the length of the replacement "foo".

Adjust for any fenceposting errors you stumble across ;-)

-tim




&lt;/pre&gt;</description>
    <dc:creator>Tim Chase</dc:creator>
    <dc:date>2013-05-16T14:20:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5976">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5976</link>
    <description>&lt;pre&gt;

Alternatives:

   perl -wpe '
       BEGIN{%h=`cat ./file1`=~/(\w+)\W+(\w+)/g}
       s/((\S+).*)/"$1 ".($h{$2}||"N\/A")/e
' ./file2

   perl -wpe '
       BEGIN{%h=`cat ./file1`=~/(.*?);(.*)/g}
       s/((\S+).*)/"$1 ".($h{$2}||"N\/A")/e
' ./file2

&lt;/pre&gt;</description>
    <dc:creator>Ruud H.G. van Tol</dc:creator>
    <dc:date>2013-05-16T12:26:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5975">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5975</link>
    <description>&lt;pre&gt;
In Perl:

perl -wpe '
   BEGIN{%h=map{split/\s*;\s*/}`cat ./file1`}
   s/((\S+).*)/"$1 ".($h{$2}||"N\/A")/e
' ./file2

Num ; Comments ; Nbr_pass
1 ; AAAA ; N/A
2 ; BBBBB ; N/A
3 ; CC ; N/A
4 ; XXDF ; N/A
5 ; KIJHG ; 1
6 ; GFRD ; N/A
7 ; HGTFEDFR ; 1
8 ; DJHY ; 4
9 ; FDGRTFG ; N/A
10 ; QWXVG ; N/A
11 ; FTGJ ; N/A
12 ; DHGRF ; 1
13 ; GFDRFE ; 5
14 ; GFDRFE ; N/A
15 ; FGTF ; 7
16 ; LKJU ; N/A
17 ; DFDE ; N/A


Make it:

   /"$1 ".($h{$2}||"N\/A")." ;"/

if you need the trailing " ;".

&lt;/pre&gt;</description>
    <dc:creator>Ruud H.G. van Tol</dc:creator>
    <dc:date>2013-05-16T12:08:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5974">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5974</link>
    <description>&lt;pre&gt;Hello,

Try:

catEndingFile.txt &amp;gt;&amp;gt; BeginningFile.txt

The &amp;gt;&amp;gt; will append the first file to the end of the second file. 
You can also:

cat file1.txt file2.txt file3.txt &amp;gt; file123.txt

Michael
&lt;/pre&gt;</description>
    <dc:creator>Frost</dc:creator>
    <dc:date>2013-05-16T02:21:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5973">
    <title>Insert character x at...</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5973</link>
    <description>&lt;pre&gt;Hi all, I'm needing some help creating a command line that's hopefully simple.

I'd like to use a sed command in a batch file to do the following on a fixed format input file:

For every line in input file that begins with '0530' (in first 4 characters on line), insert 'x' at position/column 32 on same line, then output the whole file to a newfile.

Optionally, if its possible to delete one character (a blank space) on same line at position 34, that would be helpful as well, to preserve formatting.

Any/all help is greatly appreciated.

Thanks

&lt;/pre&gt;</description>
    <dc:creator>blackmuerte</dc:creator>
    <dc:date>2013-05-14T21:17:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5972">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5972</link>
    <description>&lt;pre&gt;Hello,

here is a solution.

sed  '
$!{
N;
s/^/\n/;
D
}

/^\([^\n; ]*\)\( *\);.*\n\1\( *\);/!{

s/\n/ N\/A ;&amp;amp;/
/\n/!s/$/ N\/A;/
}

/^\([^\n; ]*\)\( *\);\([^\n][^\n]*\)\(.*\)\n\1\( *\);\([^\n][^\n]*\)/{

s//\1\2;\3 \6\5\4/;
}
P;
D;
'       file2    file1  
#  PS : it is ur file2 and file1 in that order.

this gives the solution below.




Num ; Comments ; Nbr_pass;
1 ; AAAA ; N/A ;
2 ; BBBBB ; N/A ;
3 ; CC ; N/A ;
4 ; XXDF ; N/A ;
5 ; KIJHG ; 1;
6 ; GFRD ; N/A ;
7 ; HGTFEDFR ; 1;
8 ; DJHY ; 4;
9 ; FDGRTFG ; N/A ;
10 ; QWXVG ; N/A ;
11 ; FTGJ ; N/A ;
12 ; DHGRF ; 1;
13 ; GFDRFE ; 5;
14 ; GFDRFE ; N/A ;
15 ; FGTF ; 7;
16 ; LKJU ; N/A ;
17 ; DFDE ; N/A;






________________________________
 From: MOKRANI Rachid &amp;lt;rachid.mokrani&amp;lt; at &amp;gt;ifpen.fr&amp;gt;
To: sed-users&amp;lt; at &amp;gt;yahoogroups.com 
Sent: Wednesday, May 15, 2013 5:25 PM
Subject: join two files
 

Hi,

I need some help for doing the following command with sed. Is someone
could gibe me the exemple ?

Many thanks.


=============================
cat /tmp/file_1

Num;Nbr_pass;
5;1;
7;1;
8;4;
12;1;
13;5;
15;7;
=============================

cat /tmp/file2

Num ; Comments ;
1 ; AAAA ;
2 ; BBBBB ;
3 ; CC ;
4 ; XXDF ;
5 ; KIJHG ;
6 ; GFRD ;
7 ; HGTFEDFR ;
8 ; DJHY ;
9 ; FDGRTFG ;
10 ; QWXVG ;
11 ; FTGJ ;
12 ; DHGRF ;
13 ; GFDRFE ;
14 ; GFDRFE ;
15 ; FGTF ;
16 ; LKJU ;
17 ; DFDE ;

=============================
The result, I would like to have. 


Num ; Comments ; Nbr_pass ;
1 ; AAAA ; N/A ; 
2 ; BBBBB ; N/A;
3 ; CC ; N/A;
4 ; XXDF ; N/A;
5 ; KIJHG ;1 ;
6 ; GFRD ; N/A;
7 ; HGTFEDFR ; 1 ;
8 ; DJHY ; 1 ;
9 ; FDGRTFG ; N/A;
10 ; QWXVG ; N/A;
11 ; FTGJ ; N/A;
12 ; DHGRF ; 1 ;
13 ; GFDRFE ; 5 ;
14 ; GFDRFE ; N/A;
15 ; FGTF ; 7 ;
16 ; LKJU ; N/A;
17 ; DFDE ; N/A;



Many thanks for help.
Regards.


__________________________
Avant d'imprimer, pensez à l'environnement ! Please consider the environment before printing ! 
Ce message et toutes ses pièces jointes sont confidentiels et établis à l'intention exclusive de ses destinataires. Toute utilisation non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. IFP Energies nouvelles décline toute responsabilité au titre de ce message. This message and any attachments are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP Energies nouvelles should not be liable for this message.
__________________________


[Non-text portions of this message have been removed]



------------------------------------

&lt;/pre&gt;</description>
    <dc:creator>Werfgam Nadler</dc:creator>
    <dc:date>2013-05-16T10:47:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5971">
    <title>RE: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5971</link>
    <description>&lt;pre&gt;
well, join don't give the good result :-( 
and same with paste, no good result.

/usr/bin/join --nocheck-order -t ';' -a 1 file1 file2
Num;Nbr_pass;;Comments;
5;1;;KIJHG;
7;1;;HGTFEDFR;
8;4;;DJHY;
12;1;
13;1;
15;7;


A sed syntax would be appreciated. (CentOS 6.3 - kernel 2.6.32 - sed release 4.2.1)

Thanks in advance. 




 

__________________________
Avant d'imprimer, pensez à l'environnement ! Please consider the environment before printing ! 
Ce message et toutes ses pièces jointes sont confidentiels et établis à l'intention exclusive de ses destinataires. Toute utilisation non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. IFP Energies nouvelles décline toute responsabilité au titre de ce message. This message and any attachments are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP Energies nouvelles should not be liable for this message.
__________________________

&lt;/pre&gt;</description>
    <dc:creator>MOKRANI Rachid</dc:creator>
    <dc:date>2013-05-15T16:19:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5970">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5970</link>
    <description>&lt;pre&gt;I'd use `join` to get the data itself in the right places and `sed` to do
the formatting.


[Non-text portions of this message have been removed]

&lt;/pre&gt;</description>
    <dc:creator>Jim Hill</dc:creator>
    <dc:date>2013-05-15T15:23:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5969">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5969</link>
    <description>&lt;pre&gt;GNU sed version 4.2.1

well, I tested it, it worked on ubuntu 12.10, kernel 3.7...


$ sed  "$(sed 's|;|s/$/|;s|;| ;/|' file1)"  file2 |sed '/;.*;.*;.*/!s|$| 
N/A;|'
1 ; AAAA ; N/A;
2 ; BBBBB ; N/A;
3 ; CC ; N/A;
4 ; XXDF ; N/A;
5 ; KIJHG ;1 ;
6 ; GFRD ; N/A;
7 ; HGTFEDFR ;1 ;
8 ; DJHY ;4 ;
9 ; FDGRTFG ; N/A;
10 ; QWXVG ; N/A;
11 ; FTGJ ; N/A;
12 ; DHGRF ;1 ;
13 ; GFDRFE ;5 ;
14 ; GFDRFE ; N/A;
15 ; FGTF ;7 ;
16 ; LKJU ; N/A;
17 ; DFDE ; N/A;



On 05/15/2013 03:47 PM, Amarendra Godbole wrote:

&lt;/pre&gt;</description>
    <dc:creator>Thierry Blanc</dc:creator>
    <dc:date>2013-05-15T14:10:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5968">
    <title>Re: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5968</link>
    <description>&lt;pre&gt;Rachid,

Thierry may not have tested his example mostly, and hence sed version should not matter. With some tweaks, and knowledge of sed, you should be able to get it work. Thanks.

-ag

--
sent via 100% recycled electrons from my mobile command center.

On May 15, 2013, at 6:27 AM, "MOKRANI Rachid" &amp;lt;rachid.mokrani&amp;lt; at &amp;gt;ifpen.fr&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Amarendra Godbole</dc:creator>
    <dc:date>2013-05-15T13:47:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.editors.sed.user/5967">
    <title>RE: join two files</title>
    <link>http://permalink.gmane.org/gmane.editors.sed.user/5967</link>
    <description>&lt;pre&gt;Thanks Thierry,

But I think we don't have the same sed version.

My release is (standard CentOS):
sed --version
GNU sed version 4.2.1


Doesn't work.


 

__________________________
Avant d'imprimer, pensez à l'environnement ! Please consider the environment before printing ! 
Ce message et toutes ses pièces jointes sont confidentiels et établis à l'intention exclusive de ses destinataires. Toute utilisation non conforme à sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. IFP Energies nouvelles décline toute responsabilité au titre de ce message. This message and any attachments are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP Energies nouvelles should not be liable for this message.
__________________________

&lt;/pre&gt;</description>
    <dc:creator>MOKRANI Rachid</dc:creator>
    <dc:date>2013-05-15T13:26:42</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.editors.sed.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.editors.sed.user</link>
  </textinput>
</rdf:RDF>
