Skip to content

Instantly share code, notes, and snippets.

@ElectricCoffee
Created October 27, 2017 11:22
Show Gist options
  • Save ElectricCoffee/92f3f671174255ca90ea35a424f43845 to your computer and use it in GitHub Desktop.
Save ElectricCoffee/92f3f671174255ca90ea35a424f43845 to your computer and use it in GitHub Desktop.
show() {
for file in $(find .); do
if [[ $file =~ $1 || $file == $1 ]]; then
echo $file
fi
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment