dotfiles/fish/functions/clean_rake_cache.fish

5 lines
144 B
Fish
Raw Normal View History

function clean_rake_cache -d "Clean the rake autocomplete cache"
for a in /tmp/rake_completion_cache_for_$USER/*
rm "$a"
end
end