forked from kiss-community/kiss
kiss: POSIX find usage. Closes #154
This commit is contained in:
parent
e200e8b358
commit
1a8a43ec62
13
kiss
13
kiss
@ -353,10 +353,19 @@ pkg_extract() {
|
|||||||
# if any files/directories fail (due to mv's lack of
|
# if any files/directories fail (due to mv's lack of
|
||||||
# directory merge capability), simply do the exercise
|
# directory merge capability), simply do the exercise
|
||||||
# again and copy-merge the remaining files/directories.
|
# again and copy-merge the remaining files/directories.
|
||||||
|
#
|
||||||
|
# We can use '-exec {} +' with any arguments between
|
||||||
|
# the '{}' and '+' as this is not POSIX. We must also
|
||||||
|
# use '$0' and '$@' to reference all arguments.
|
||||||
|
#
|
||||||
|
# Using only '$@' causes a single file from each
|
||||||
|
# invocation to be left out of the list. Weird, right?
|
||||||
{
|
{
|
||||||
find "$$-$dir/." ! -name . -prune -exec mv -f {} . + ||
|
find "$$-$dir/." ! -name . -prune \
|
||||||
find "$$-$dir/." ! -name . -prune -exec cp -fRp {} . +
|
-exec sh -c 'mv -f "$0" "$@" .' {} + ||
|
||||||
|
|
||||||
|
find "$$-$dir/." ! -name . -prune \
|
||||||
|
-exec sh -c 'cp -fRp "$0" "$@" .' {} +
|
||||||
} 2>/dev/null
|
} 2>/dev/null
|
||||||
|
|
||||||
# Remove the directory now that all files have been
|
# Remove the directory now that all files have been
|
||||||
|
Loading…
Reference in New Issue
Block a user