mirror of
https://github.com/dockersrc/archlinux
synced 2024-11-21 05:23:03 -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
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# Main application
|
||||
if [ $# -ne 2 ] || [ ! -e "$1" ]; then
|
||||
__printf_color "Usage: $APPNAME from to"
|
||||
exit 1
|
||||
else
|
||||
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
if [ -d "$1" ]; then
|
||||
mkdir -p "$2"
|
||||
cp -Rf "$1/." "$2/"
|
||||
COPY_EXIT_STATUS=$?
|
||||
elif [ -e "$1" ]; then
|
||||
cp -Rf "$1" "$2"
|
||||
COPY_EXIT_STATUS=$?
|
||||
else
|
||||
COPY_EXIT_STATUS=2
|
||||
fi
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# End application
|
||||
|
@ -53,15 +53,14 @@ DEFAULT_COLOR="254"
|
||||
SYMLINK_EXIT_STATUS=0
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# Main application
|
||||
if [ $# -ne 2 ] || [ ! -e "$1" ]; then
|
||||
__printf_color "Usage: $APPNAME from to"
|
||||
exit 1
|
||||
else
|
||||
if [ -L "$2" ]; then
|
||||
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
if [ -L "$2" ]; then
|
||||
unlink "$2"
|
||||
elif [ -e "$2" ]; then
|
||||
elif [ -e "$2" ]; then
|
||||
rm -Rf "$2"
|
||||
fi
|
||||
fi
|
||||
if [ -e "$1" ]; then
|
||||
ln -sf "$1" "$2"
|
||||
SYMLINK_EXIT_STATUS=$?
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user