🗃️ Committing everything that changed 🗃️

rootfs/usr/local/bin/copy
rootfs/usr/local/bin/symlink
This commit is contained in:
casjay 2024-08-27 14:03:14 -04:00
parent 8ee3660ea6
commit f19fb22b41
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145
2 changed files with 17 additions and 13 deletions

View File

@ -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

View File

@ -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