<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Axiso &#187; Console / Shell</title>
	<atom:link href="http://www.axiso.net/c/notes/linux/console-shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.axiso.net</link>
	<description>Notes</description>
	<lastBuildDate>Sat, 21 Feb 2026 21:29:38 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.40</generator>
	<item>
		<title>Connexion FTPES en console avec LFTP</title>
		<link>http://www.axiso.net/a/connexion-ftpes-console-avec-lftp/</link>
		<comments>http://www.axiso.net/a/connexion-ftpes-console-avec-lftp/#comments</comments>
		<pubDate>Sat, 21 May 2011 15:29:23 +0000</pubDate>
		<dc:creator><![CDATA[axiso]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[ftpes]]></category>
		<category><![CDATA[lftp]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=839</guid>
		<description><![CDATA[Accès FTPES (FTP + SSL) après installation du client LFTP : user@example.org:~# lftp lftp :~> set ftp:ssl-force true lftp :~> connect ftp.example.net lftp ftp.s1.dirvia.com:~> login user Voir aussi http://www.linuxweblog.com/ftp-tls-ssl]]></description>
		<wfw:commentRss>http://www.axiso.net/a/connexion-ftpes-console-avec-lftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recherche de texte avec Grep</title>
		<link>http://www.axiso.net/a/recherche-texte-grep/</link>
		<comments>http://www.axiso.net/a/recherche-texte-grep/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 21:15:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[grep]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=659</guid>
		<description><![CDATA[Ne pas tenir compte de la casse typographique (caractères majuscules / minuscules) : grep -i 'aBCdefG' Trouver les fichiers textes contenant la recherche et présents dans divers répertoires : grep -Hir abcdefg /home/utilisateur/*/*.txt Rechercher plusieurs termes au choix (condition OU / OR) : grep -E 'aaaa&#124;bbbb&#124;cccc']]></description>
		<wfw:commentRss>http://www.axiso.net/a/recherche-texte-grep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignorer avec la commande find</title>
		<link>http://www.axiso.net/a/ignorer-avec-commande-find/</link>
		<comments>http://www.axiso.net/a/ignorer-avec-commande-find/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:17:30 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[find]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=556</guid>
		<description><![CDATA[Lister tous les répertoires mais exclure ceux nommés &#171;&#160;config&#160;&#187; : find . -type d ! -iname "config" Lister tous les répertoires mais exclure ceux nommés &#171;&#160;config&#160;&#187; et ceux dont le nom débute par un point : find . -type d ! -iname "config" ! -iname ".*" Lister tous les répertoires mais exclure ceux dont le [&#8230;]]]></description>
		<wfw:commentRss>http://www.axiso.net/a/ignorer-avec-commande-find/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remplacement de texte avec Sed</title>
		<link>http://www.axiso.net/a/remplacements-texte-sed/</link>
		<comments>http://www.axiso.net/a/remplacements-texte-sed/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 07:11:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=547</guid>
		<description><![CDATA[Remplacer le texte aaaa par bbbb une fois par ligne dans un fichier : sed -i s/aaaa/bbbb/ fichier.txt Remplacer le texte aaaa par bbbb plusieurs fois de façon globale : sed -i s/aaaa/bbbb/g fichier.txt Remplacer les caractères spéciaux par des sauts de lignes réels : sed -i 's/\r\n/rn/g' fichier.txt Insérer le texte aaaa en première [&#8230;]]]></description>
		<wfw:commentRss>http://www.axiso.net/a/remplacements-texte-sed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Résultat d’une commande vers une variable</title>
		<link>http://www.axiso.net/a/resultat-d%e2%80%99une-commande-vers-une-variable/</link>
		<comments>http://www.axiso.net/a/resultat-d%e2%80%99une-commande-vers-une-variable/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 05:35:13 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=315</guid>
		<description><![CDATA[Affecter le résultat d’une commande à une variable variable_version=$(uname -r) echo $variable_version affiche la version du noyau Linux.]]></description>
		<wfw:commentRss>http://www.axiso.net/a/resultat-d%e2%80%99une-commande-vers-une-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clore des processus par leur nom</title>
		<link>http://www.axiso.net/a/clore-processus-par-nom/</link>
		<comments>http://www.axiso.net/a/clore-processus-par-nom/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 07:33:59 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[kill]]></category>
		<category><![CDATA[processes]]></category>
		<category><![CDATA[processus]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=154</guid>
		<description><![CDATA[Tuer tous les processus intitulés nom ps axwww &#124; grep nom &#124; awk &#8216;{print $1}&#8217; &#124; xargs -n1 kill -9]]></description>
		<wfw:commentRss>http://www.axiso.net/a/clore-processus-par-nom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lister le volume de chaque répertoire</title>
		<link>http://www.axiso.net/a/lister-volume-repertoire/</link>
		<comments>http://www.axiso.net/a/lister-volume-repertoire/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 20:27:48 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[répertoire]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[taille]]></category>
		<category><![CDATA[volume]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=108</guid>
		<description><![CDATA[Lister les répertoires ainsi que le volume (la taille) qu’ils occupent sur le disque du -h --max-depth=1 Liste triée selon le volume : du -h --max-depth=1 &#124; sort -h Le paramètre max-depth correspond au niveau de répertoires à lister : 1 = les répertoires de l’emplacement actuel 2 = leurs sous-répertoires …]]></description>
		<wfw:commentRss>http://www.axiso.net/a/lister-volume-repertoire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personnaliser la console</title>
		<link>http://www.axiso.net/a/personnaliser-console/</link>
		<comments>http://www.axiso.net/a/personnaliser-console/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 18:17:36 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[couleur]]></category>
		<category><![CDATA[prompt]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=98</guid>
		<description><![CDATA[Simplement pour l’esthétique et le confort, il est possible de personnaliser l’invite de commande (le prompt) sur une console Linux Prompt en couleurs Accessoire mais bien pratique pour visualiser où se trouve l’invite de commande. Fermer la session (avec exit) et l’ouvrir à nouveau pour tester les modifications. Utilisateur Debian Ouvrir le fichier de configuration [&#8230;]]]></description>
		<wfw:commentRss>http://www.axiso.net/a/personnaliser-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Console Linux sur Windows</title>
		<link>http://www.axiso.net/a/console-linux-sur-windows/</link>
		<comments>http://www.axiso.net/a/console-linux-sur-windows/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 07:26:42 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=94</guid>
		<description><![CDATA[Les solutions gratuites Putty ou Cygwin permettent d’obtenir une console de connexion SSH pour gérer un serveur Linux mais elles présentent quelques défauts : dimensions de la console limitées (configurable sans doute) copie de données hasardeuse entre Windows et la console, en particulier avec les tabulations multiples instances difficiles à gérer L’alternative la plus adaptée [&#8230;]]]></description>
		<wfw:commentRss>http://www.axiso.net/a/console-linux-sur-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim</title>
		<link>http://www.axiso.net/a/vim/</link>
		<comments>http://www.axiso.net/a/vim/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 06:37:45 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Console / Shell]]></category>
		<category><![CDATA[raccourci]]></category>
		<category><![CDATA[shorcut]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.axiso.net/?p=79</guid>
		<description><![CDATA[Utilisation de l&#8217;éditeur Vim Recherche /, expression recherchée n pour afficher l&#8217;occurence suivante Déplacement Shift + G : bas de page]]></description>
		<wfw:commentRss>http://www.axiso.net/a/vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
