From 4b85d59e2fecd908a642b5fdaeff207f0e980ad3 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 24 Dec 2011 23:19:13 -0500 Subject: arch-tmpfiles: avoid pipe to xargs Signed-off-by: Dave Reisner --- arch-tmpfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch-tmpfiles') 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 -- cgit v1.2.3