files: replace unnecessary use of xargs

This commit is contained in:
Robert Helgesson 2019-04-27 13:48:57 +02:00
parent a16439e38e
commit c94eaa0e6c
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -74,8 +74,8 @@ in
function checkNewGenCollision() { function checkNewGenCollision() {
local newGenFiles local newGenFiles
newGenFiles="$(readlink -e "$newGenPath/home-files")" newGenFiles="$(readlink -e "$newGenPath/home-files")"
find "$newGenFiles" -type f -print0 -or -type l -print0 \ find "$newGenFiles" -type f -or -type l \
| xargs -0 bash ${check} "$newGenFiles" -exec bash ${check} "$newGenFiles" {} +
} }
checkNewGenCollision || exit 1 checkNewGenCollision || exit 1
@ -155,8 +155,8 @@ in
local newGenFiles local newGenFiles
newGenFiles="$(readlink -e "$newGenPath/home-files")" newGenFiles="$(readlink -e "$newGenPath/home-files")"
find "$newGenFiles" -type f -print0 -or -type l -print0 \ find "$newGenFiles" -type f -or -type l \
| xargs -0 bash ${link} "$newGenFiles" -exec bash ${link} "$newGenFiles" {} +
} }
function cleanOldGen() { function cleanOldGen() {