Skip to content

Instantly share code, notes, and snippets.

@sveetch
Created March 14, 2013 15:24
Show Gist options
  • Save sveetch/5162268 to your computer and use it in GitHub Desktop.
Save sveetch/5162268 to your computer and use it in GitHub Desktop.
Alias shell pour faire une recherche rapide avec grep sous le nom de commande "oukilai". Usage : $> oukilai monmotif
# Recherche d'un motif dans tout les fichiers *.py ou *.html récursivement à
# partir de l'emplacement courant
alias oukilai='find . \( -name \*.py -o -name \*.html -o -name \*.css -o -name \*.scss -o -name \*.sass \) -type f | xargs grep $1 -I --color=auto -n -o'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment