i read few post ago that you wrote this:
Code: Select all
if [[ "$TR_TORRENT_PARAMETER" =~ "EXTRACT" ]]; then
...
if [ ${#RAR_FILES} -gt 0 ]; then
...
else
cp -val $SRC_DIR $DEST_DIR
echo $NOW "Copied $TR_TORRENT_NAME" >> $LOG_FILE
fi
fi

my challenge was to add a filter option for file with a particular extension (editable maybe, like all video files or all iso files and so on) and if the torrent is a rar folder extract and copy to $DEST_DIR, if is a direct file just hardlink (with cp -val) to $DEST_DIR
no clue so far