aboutsummaryrefslogtreecommitdiff
path: root/arch-tmpfiles
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-12-24 23:19:13 -0500
committerDave Reisner <dreisner@archlinux.org>2011-12-26 10:17:44 -0500
commit4b85d59e2fecd908a642b5fdaeff207f0e980ad3 (patch)
tree15d4cf1f2b7dce03d68a050e6dd74f5e0fb78c23 /arch-tmpfiles
parent80b27145dcdf8e2bee41e450a633e30d366906f1 (diff)
downloadinitscripts-4b85d59e2fecd908a642b5fdaeff207f0e980ad3.tar.xz
arch-tmpfiles: avoid pipe to xargs
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'arch-tmpfiles')
-rwxr-xr-xarch-tmpfiles2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch-tmpfiles b/arch-tmpfiles
index 73c4328..859abe5 100755
--- a/arch-tmpfiles
+++ b/arch-tmpfiles
@@ -93,7 +93,7 @@ _D() {
fi
if [[ -d $path ]] && (( REMOVE )); then
- find "$path" -mindepth 1 -maxdepth 1 -xdev -print0 | xargs -r0 rm -rf
+ find "$path" -mindepth 1 -maxdepth 1 -xdev -exec rm -rf {} +
fi
if (( CREATE )); then