aboutsummaryrefslogtreecommitdiffstats
path: root/fish/functions/pyfind.fish
blob: e82d716b02f4c4d19c6810d3453f43353aa1a7c2 (plain) (blame)
1
2
3
4
# Defined in /tmp/fish.e6R9oj/pyfind.fish @ line 2
function pyfind --description 'Find string in Python files from this root'
	find -name "*.py"|xargs grep $argv
end