mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-09 13:10:40 +00:00
10 lines
218 B
Fish
10 lines
218 B
Fish
# clean current directory recursively from any .pyc and .pyo files
|
|
function pyclean
|
|
if test -n $argv
|
|
set path2CLEAN $argv
|
|
else
|
|
set path2CLEAN .
|
|
end
|
|
|
|
find $path2CLEAN -name "*.py[co]" -type f -delete
|
|
end |