<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <link xmlns="http://www.w3.org/2005/Atom" rel="hub" href="https://overblog.superfeedr.com"/>
        <link xmlns="http://www.w3.org/2005/Atom" rel="self" href="https://pti-jean.over-blog.fr/rss" type="application/rss+xml"/>
        <title><![CDATA[Le blog de pti-jean]]></title>
        <link>https://pti-jean.over-blog.fr/</link>
        <generator>Overblog - https://www.over-blog.com</generator>
        <description><![CDATA[Un pti-blog sur l'informatique, la culture Libre (de Windows &agrave; Gnu/Linux)... Bienvenu ;-)]]></description>
                    <item>
    <title><![CDATA[Activer auto-complétion dans le shell Python]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12202013.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12202013.html</guid>
    <pubDate>Wed, 05 Sep 2007 22:26:00 +0200</pubDate>
    <description><![CDATA[Pour activer auto-complétion dans le shell Python sous Gnu/Linux (Ubuntu) : Créer le fichier "~.pythonrc.py" avec ce comtenu: $ cat .pythonrc.py import rlcompleter, readline readline.parse_and_bind('tab: complete') Puis rajouter cette ligne dans le fichier... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Ouverture de Firefox avec une URL aléatoire]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12112165.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12112165.html</guid>
    <pubDate>Sat, 01 Sep 2007 12:05:00 +0200</pubDate>
    <description><![CDATA[Bonjour, L'astuce du jour: Ouverture de firefox avec une URL aléatoire... Je crée un fichier script (que moi, j'ai mis dans ~/bin) que j'appelle url-Random.sh... Sons contenu: $ cat bin/url-Random.sh #!/bin/bash f=~/.lists-d-url cat $f | head -$(($RANDOM%$(cat... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd renvoyer x lignes d'un fichier]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12111494.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12111494.html</guid>
    <pubDate>Sat, 01 Sep 2007 11:28:00 +0200</pubDate>
    <description><![CDATA[La commande tail retourne par défaut les 10 dernières lignes d'un fichier. La commande head retourne par défaut les 10 premières lignes d'un fichier. ex: $ tail /etc/X11/xorg.conf EndSection Section "DRI" Mode 0666 EndSection Section "Extensions" Option... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd calculer le nombres de lignes d'un fichier]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12111260.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12111260.html</guid>
    <pubDate>Sat, 01 Sep 2007 11:13:00 +0200</pubDate>
    <description><![CDATA[La commande "wc -l" retourne le nombre de lignes d'un fichier: ex: $ wc -l .bash_history 500 .bash_history ou: $ cat .bash_history | wc -l 500 ex: $ echo "un > deux > trois > quatre > cinq" un deux trois quatre cinq donc: $ echo "un > deux > trois > quatre... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd Aléatoire (Random)]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12110957.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12110957.html</guid>
    <pubDate>Sat, 01 Sep 2007 10:54:00 +0200</pubDate>
    <description><![CDATA[La variable $RANDOM renvoie un nombre aléatoire. ex: $ echo $RANDOM 13244 $ echo $RANDOM 3806 $ echo $RANDOM 28307 ... Pour avoir un nombre aléatoire inférieur à x, ont a recourt à la fonction modulo (%) (voir mon article: cmd faire des maths en ligne... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd faire des maths en ligne de commandes]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-12110619.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-12110619.html</guid>
    <pubDate>Sat, 01 Sep 2007 10:34:00 +0200</pubDate>
    <description><![CDATA[Une évaluation arithmétique en /bin/bash s'écrit comme: $(( équation )) ex: $ echo $((4+3)) 7 $ echo $((5-2)) 3 $ echo $((5*3)) 15 $ echo $((7/3)) 2 $ # reste: $ echo $((7%3)) 1 $ a=0$ echo $((5*$a)); a=$((a+1)) 0 $ echo $((5*$a)); a=$((a+1)) 5 $ echo... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Chat sous Samba]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11863348.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11863348.html</guid>
    <pubDate>Sun, 19 Aug 2007 01:19:00 +0200</pubDate>
    <description><![CDATA[Bonsoir, Aujourd'hui, j'ai bataillé sur les configs des chats samba (voisinage réseau sous Windows) (chat en réseau lan... réseau local) Tous d'abord je souhaitais chater entre Gnu/Linux et Windows. D'où l'intérêt de trouver des logiciels compatibles.... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd nmap scan de ports réseaux]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750634.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750634.html</guid>
    <pubDate>Sat, 11 Aug 2007 01:36:00 +0200</pubDate>
    <description><![CDATA[La commande nmap, scanne des ports réseaux. $ nmap -p 1- 192.168.1.100 Scanne tous les ports de la machine d'ip 192.168.1.100 $ nmap -sP 192.168.0.0/24 Scanne par le ping, pour retrouver toutes les machines du réseau. nti_bug_fck ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd 'top&quot;: utilisation processeur]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750608.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750608.html</guid>
    <pubDate>Sat, 11 Aug 2007 01:33:00 +0200</pubDate>
    <description><![CDATA[La commande top affiche en live, l'utilisation du processeur. ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;pwd&quot;: affiche rep couant]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750596.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750596.html</guid>
    <pubDate>Sat, 11 Aug 2007 01:29:00 +0200</pubDate>
    <description><![CDATA[La commande pwd affiche le répertoire courant. ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;df&quot; taille disque]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750541.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750541.html</guid>
    <pubDate>Sat, 11 Aug 2007 01:12:00 +0200</pubDate>
    <description><![CDATA[La commande df affiche la taille des points de montage (disque). ex: $ df Sys. de fich. 1K-blocs Occupé Disponible Capacité Monté sur /dev/sda1 114088900 4903656 103389800 5% / varrun 224772 108 224664 1% /var/run varlock 224772 0 224772 0% /var/lock... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;du&quot;: taille d'un répertoire]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750498.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750498.html</guid>
    <pubDate>Sat, 11 Aug 2007 01:02:00 +0200</pubDate>
    <description><![CDATA[La commande du affiche la taille d'un répertoire. ex: $ du /boot/ 216 /boot/grub 33696 /boot/ ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;lspci&quot;: info des ports PCI]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750426.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750426.html</guid>
    <pubDate>Sat, 11 Aug 2007 00:50:00 +0200</pubDate>
    <description><![CDATA[La commande lspci donne une info sur les ports PCI. Cette commande est commode pour connaître le matériel installé (comme le modèle de cartes vidéo) ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;lshw&quot;: inventaire matériel]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750380.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750380.html</guid>
    <pubDate>Sat, 11 Aug 2007 00:43:00 +0200</pubDate>
    <description><![CDATA[La commande lshw donne l'inventaire du matériel. ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Création de la catégorie &quot;Commande Gnu/Linux&quot;]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750280.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750280.html</guid>
    <pubDate>Sat, 11 Aug 2007 00:27:00 +0200</pubDate>
    <description><![CDATA[Bonsoir, Je viens de créé la catégorie "Commande Gnu/Linux", qui va me servir d'aide mémoire pour les commandes Gnu/Linux. Éventuellement, je créerais d'autres catégories de ce type pour Windows/Dos... par exemple. Bonne découverte. ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;tac&quot; inversion des lignes]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750163.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750163.html</guid>
    <pubDate>Sat, 11 Aug 2007 00:15:00 +0200</pubDate>
    <description><![CDATA[La commande tac inverse les linges d'un fichier. ex: $ echo carotte > fichier.txt $ echo patate >> fichier.txt $ echo tomate >> fichier.txt $ echo radie >> fichier.txt $ cat fichier.txt carotte patate tomate radie $ cat fichier.txt | tac radie tomate... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[cmd &quot;rev&quot; inverse la ligne]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11750019.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11750019.html</guid>
    <pubDate>Fri, 10 Aug 2007 23:58:00 +0200</pubDate>
    <description><![CDATA[La commande rev inverse le contenu d'une ligne. ex: $ echo 0123456789 | rev $ 9876543210 ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Pourquoi Windows???]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11617179.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11617179.html</guid>
    <pubDate>Thu, 02 Aug 2007 00:56:00 +0200</pubDate>
    <description><![CDATA[Bonsoir, Tout à l'heure je discutais avec mon petit neveu qui à 10 ans... Il ne comprenait pas que les gens préféraient utiliser Windows alors qu'il était cher. J'étais obligé de lui expliquer que les gens trouvaient Gnu/Linux compliqué, null, et avec... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[À propos du contenu]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11612694.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11612694.html</guid>
    <pubDate>Wed, 01 Aug 2007 19:53:00 +0200</pubDate>
    <description><![CDATA[Re, Sur la question, à quoi consacrer mon blog... Étant informaticien et passionné par la culture Libre... Une grosse partie de ce blog sera consacré à l'informatique et au Libre! Et en tan qu'informaticien qui se respecte, je suis un peu feignent...... ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Bonjour]]></title>
    <link><![CDATA[https://pti-jean.over-blog.fr/article-11611220.html]]></link>
    <guid>https://pti-jean.over-blog.fr/article-11611220.html</guid>
    <pubDate>Wed, 01 Aug 2007 18:33:00 +0200</pubDate>
    <description><![CDATA[Bonjour la blogosphère et bien venu dans mon espace perso... Nouveaux comme bloger, verra bien quel contenu suivra! ]]></description>
        <dc:creator><![CDATA[pti-jean]]></dc:creator>
    </item>
            </channel>
</rss>

