Fu : un script pour récupérer des exemples depuis commandlinefu.com

From Deimos.fr / Bloc Notes Informatique
Jump to: navigation, search

1 Introduction

fu est un script qui vous permettra d'obtenir des exemples sur certaines commandes en rapport avec le site commandlinefu.com.

2 Installation

Pour l'installation, c'est simple :

Command aptitude
aptitude install git-core make

Puis l'installation de fu :

Command
cd /tmp
git clone git://github.com/samirahmed/fu.git
cd fu/
make install
cd ..
rm -rf fu

3 Utilisation

Et voilà comment l'utiliser, c'est super simple :

Command fu
> fu -a awk
 1	#  List of commands you use most often
	history | awk '{a[$2]++}END{for(i in a){print a[i] " " i}}' | sort -rn | head
 
 2	#  Display a block of text with AWK
	awk '/start_pattern/,/stop_pattern/' file.txt
 
 3	#  Remove duplicate entries in a file without sorting.
	awk '!x[$0]++' <file>

Regardez les options pour voir tout ce qui est possible, il y en a des sympatiques.

4 Ressources

http://www.le-libriste.fr/2012/03/progressez-avec-les-commandes-linux-grace-a-lapplication-fu/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+webdevonlinux%2FHrzu+%28Le+Libriste%29#top