From 50d80fa65e60b9e20fe6a034d2dbb4a82f927e09 Mon Sep 17 00:00:00 2001 From: Pavel Puchkin Date: Wed, 26 Oct 2011 19:34:14 +1100 Subject: [PATCH] pyclean's find now use native delete function --- plugins/python/python.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index 3ea34d718..7e670c4fb 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -2,4 +2,4 @@ alias pyfind='find . -name "*.py"' # Remove python compiled byte-code -alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;' +alias pyclean='find . -type f -name "*.py[co]" -delete'