mirror of
https://github.com/dockersrc/archlinux
synced 2024-11-21 11:23:05 -05:00
🗃️ Committing everything that changed 🗃️
rootfs/usr/local/bin/copy rootfs/usr/local/bin/symlink
This commit is contained in:
parent
8ee3660ea6
commit
f19fb22b41
@ -53,12 +53,17 @@ DEFAULT_COLOR="254"
|
|||||||
COPY_EXIT_STATUS=0
|
COPY_EXIT_STATUS=0
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Main application
|
# Main application
|
||||||
if [ $# -ne 2 ] || [ ! -e "$1" ]; then
|
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||||
__printf_color "Usage: $APPNAME from to"
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
exit 1
|
if [ -d "$1" ]; then
|
||||||
else
|
mkdir -p "$2"
|
||||||
|
cp -Rf "$1/." "$2/"
|
||||||
|
COPY_EXIT_STATUS=$?
|
||||||
|
elif [ -e "$1" ]; then
|
||||||
cp -Rf "$1" "$2"
|
cp -Rf "$1" "$2"
|
||||||
COPY_EXIT_STATUS=$?
|
COPY_EXIT_STATUS=$?
|
||||||
|
else
|
||||||
|
COPY_EXIT_STATUS=2
|
||||||
fi
|
fi
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# End application
|
# End application
|
||||||
|
@ -53,15 +53,14 @@ DEFAULT_COLOR="254"
|
|||||||
SYMLINK_EXIT_STATUS=0
|
SYMLINK_EXIT_STATUS=0
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
# Main application
|
# Main application
|
||||||
if [ $# -ne 2 ] || [ ! -e "$1" ]; then
|
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||||
__printf_color "Usage: $APPNAME from to"
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
exit 1
|
if [ -L "$2" ]; then
|
||||||
else
|
|
||||||
if [ -L "$2" ]; then
|
|
||||||
unlink "$2"
|
unlink "$2"
|
||||||
elif [ -e "$2" ]; then
|
elif [ -e "$2" ]; then
|
||||||
rm -Rf "$2"
|
rm -Rf "$2"
|
||||||
fi
|
fi
|
||||||
|
if [ -e "$1" ]; then
|
||||||
ln -sf "$1" "$2"
|
ln -sf "$1" "$2"
|
||||||
SYMLINK_EXIT_STATUS=$?
|
SYMLINK_EXIT_STATUS=$?
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user