This commit is contained in:
fred 2022-09-15 14:18:40 +02:00
parent 6c4222ab6a
commit 4be445bdbc
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ 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)
TITLE=$(yt-dlp --print title ${yurl})
ZFILE=$(ls ~/.zen/tmp/tube/$TITLE* | head -n 1)
ZFILE=$(ls "$HOME/.zen/tmp/tube/$TITLE*" | head -n 1)
[[ ! -f ~/.zen/tmp/tube/$ZFILE ]] && echo "No FILE -- EXIT --" && exit 1
echo "~/.zen/tmp/tube/$ZFILE downloaded"