Created
October 27, 2017 11:22
-
-
Save ElectricCoffee/92f3f671174255ca90ea35a424f43845 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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