You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
do you know if is there the possibility to add in logs also the name of the file it has been uploaded in this line?
echo "$(date "+%d.%m.%Y %T") RCLONE UPLOAD FINISHED IN $(($(date +'%s') - $start)) SECONDS" | tee -a $LOGFILE
Tnx
The text was updated successfully, but these errors were encountered:
You could just read the folder before rclone start eg
FileList=$(find "/my upload path/" -type f -mmin +15)
and then after rclone finish just print it out in same log
echo "$FileList" | tee -a "$LogFile"
Hello,
do you know if is there the possibility to add in logs also the name of the file it has been uploaded in this line?
echo "$(date "+%d.%m.%Y %T") RCLONE UPLOAD FINISHED IN $(($(date +'%s') - $start)) SECONDS" | tee -a $LOGFILE
Tnx
The text was updated successfully, but these errors were encountered: