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
#!/usr/bin/env bash
mapfile -t file_data <"channels.yaml"fordatain"${file_data[@]}";do# Remove whitespaces from the string
data="$(echo -e "${data}"| tr -d '[:space:]')"# We are only interested in data that starts with -"@if [[ $data=='-"@'* ]];then# Remove -" from the beginning of the string
data="${data#'-"'}"# Remove " from the ending of the string
data="${data%'"'}"
url="https://www.youtube.com/$data"
yt-dlp --simulate --quiet --no-warnings --max-downloads 1 --print channel "$url"fidone
What happens if someone changes their unique @ handle name?
How should we handle this?
Or should it be checked regularly and separately by the user?
The text was updated successfully, but these errors were encountered: