diff --git a/tools/TUBE.copy.sh b/tools/TUBE.copy.sh index 55a6bdc5d..c148cdc13 100755 --- a/tools/TUBE.copy.sh +++ b/tools/TUBE.copy.sh @@ -43,7 +43,8 @@ for yurl in $(cat ~/.zen/tmp/tiddlers.json | jq -r '.[].text' | grep 'http'); do # Get last writen file... TODO: Could we do better ? ZFILE=$(ls -t ~/.zen/tmp/tube/*.mp4 | head -n 1) - ZFILE="$(yt-dlp --print title ${yurl}).mp4" + TITLE=$(yt-dlp --print title ${yurl}) + ZFILE="$TITLE.mp4" [[ ! -f ~/.zen/tmp/tube/$ZFILE ]] && echo "No FILE -- EXIT --" && exit 1 echo "~/.zen/tmp/tube/$ZFILE downloaded"