<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Latest snippets tagged string linux</title>
  <link rel="alternate" href="http://snippets.prendreuncafe.com/snippets/tagged/string+linux/order_by/date"></link>
  <id>http://snippets.prendreuncafe.com/snippets/tagged/string+linux/order_by/date</id>
  <updated>2008-04-23T14:36:03Z</updated>
  <author>
    <name>Symfony</name>
    <author_email>noreply@symfony-project.com</author_email>
  </author>
<entry>
  <title>Extraire toutes les chaînes d'un fichier binaire</title>
  <link href="http://snippets.prendreuncafe.com/snippet/89"></link>
  <updated>2008-04-23T14:36:03Z</updated>
  <id>89</id>
  <summary type="html">En fait, c'est tout bête (mais qu'est ce que ça peut être utilie !) :

[code]
$ strings /usr/bin/iconv 
Written by %s.
char
UCS-4
conversion from %s unsupported
conversion to %s unsupported
conversion from %s to %s unsupported
try '%s -l' to get the list of supported encodings
[...]
[code]</summary>
</entry>
<entry>
  <title>Changer les caractères &amp;lt;CR&amp;gt; en &amp;lt;LF&amp;gt;</title>
  <link href="http://snippets.prendreuncafe.com/snippet/39"></link>
  <updated>2007-01-15T09:33:09Z</updated>
  <id>39</id>
  <summary type="html">Convertir rapidement et simplement les caractères \r en \n :

[code]
$ perl -pi -e 's#\r#\n#gs' /path/to/file
[/code]</summary>
</entry>
<entry>
  <title>Effacer les lignes vides d'un fichier</title>
  <link href="http://snippets.prendreuncafe.com/snippet/24"></link>
  <updated>2006-12-09T18:24:44Z</updated>
  <id>24</id>
  <summary type="html">[code]
$ sed '/^$/d' fichier.txt
[/code]</summary>
</entry>
</feed>