Commit 7182cd84 authored by Hermann Mayer's avatar Hermann Mayer
Browse files

BashRC: Made ff regex aware.

parent 212cfed1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
# ff:  to find a file under the current directory
function ff()
{
    /usr/bin/find . -name '*'"$@"'*' | grep -i "$@"
    /usr/bin/find . | grep -iP "$@"
}

# ffs: to find a file whose name starts with a given string