Defines convenience function for quickly fuzzy-finding files

This commit is contained in:
William Carroll 2017-07-29 21:41:52 -04:00
parent c05c4d7a02
commit 3cc2f2bf62

View file

@ -94,6 +94,13 @@ function wsearchpath {
}
function ff {
# finds files smartly; using rg under-the-hood so blacklisted files are ignored
glob=$1
rg -g "*$glob*" --files
}
# tests an internet connection
function is_online {
wget -q --spider "http://google.com"