This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Config | |
echo "---------Starting Wyze Merge at $(date)-----------" | |
SRC_DIR=/cameras/WyzeCams | |
# Assumes there is a camera specific folder with record folder inside it. | |
# E.g. SRC_DIR/<Camera>/record | |
TGT_DIR=/cameras/Archive | |
TMP_DIR=/tmp/wyze_merge | |
echo "Source Directory is $SRC_DIR" |