From f9100deca588bf9cbf5044cc2e01d87ab00c9790 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 8 Dec 2015 14:03:38 +0100 Subject: [PATCH] Search quickly in yaml files; add shebang --- .bash_aliases | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bash_aliases b/.bash_aliases index d75d631..f6a0ec0 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,3 +1,4 @@ +#!/bin/bash PATH=$PATH:~/bin # enable color support of ls and also add handy aliases @@ -25,6 +26,7 @@ alias findphp='find . -name "*.php" | xargs grep --color=auto' alias findjs='find . -name "*.js" | xargs grep --color=auto' alias findcss='find . -name "*.css" | xargs grep --color=auto' alias findpy='find . -name "*.py" | xargs grep --color=auto' +alias findyaml='find . -name "*.yaml" | xargs grep --color=auto' alias findfile='find . | grep -v .svn | grep -v .hg | grep -v .git | grep'