8 lines
139 B
Bash
Executable File
8 lines
139 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
SOURCE=/mnt/hdd1/Allen/PrismLauncher/
|
|
DEST=/x/nvme1/PrismLauncher
|
|
|
|
rsync -a --info=progress2 "$SOURCE" "$DEST"
|