From: Don Armstrong Date: Sat, 17 May 2014 21:41:34 +0000 (-0700) Subject: use delete instead of rm X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8c734b37f3a9bad042bdd5dd374e0540dc475dcd;p=bin.git use delete instead of rm --- diff --git a/update_lists b/update_lists index 5d25f01..d398991 100755 --- a/update_lists +++ b/update_lists @@ -13,5 +13,5 @@ done; # Remove broken symlinks (cd ~/Maildir; - find . -maxdepth 1 -mindepth 1 -type l -iname '.*' -not -xtype d -print0 |xargs -0 rm -f; -); \ No newline at end of file + find . -maxdepth 1 -mindepth 1 -type l -iname '.*' -not -xtype d -delete; +);