10 lines
368 B
Bash
Executable File
10 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# push-newer-pics — Wrapper for sync-newer-images with default paths.
|
|
# Copies new images/videos from ~/Pictures → ~/mnt/mini.nas/miniShare1/Pictures
|
|
#
|
|
# Usage: push-newer-pics [--help] [-u|--update]
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)"
|
|
exec "${SCRIPT_DIR}/sync-newer-images" "$@" "$HOME/mnt/mini.nas/miniShare1/Pictures" "$HOME/Pictures"
|