Skip to content

Instantly share code, notes, and snippets.

@possen
Last active April 17, 2018 18:03
Show Gist options
  • Save possen/a17a9e7c8c49138366a1d58629f7737f to your computer and use it in GitHub Desktop.
Save possen/a17a9e7c8c49138366a1d58629f7737f to your computer and use it in GitHub Desktop.
find for zsh
function ff() {
if [ -n "$1" ]
then
find . -name "$1" $@[2,-1]
else
echo "usage: ff name"
fi
}
function ffi() {
if [ -n "$1" ]
then
find . -iname "$1" $@[2,-1]
else
echo "usage: ffi name"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment