remove log since it's not needed

This commit is contained in:
Simon Belmont 2025-04-16 21:01:07 -04:00
parent 24b6464d0b
commit ae9a611ea6
47 changed files with 0 additions and 8388 deletions

View file

@ -1,30 +0,0 @@
#!/bin/sh
get_search_from_EXT_comments (){
_search="${selected_url}"
}
set +f
instances=$(printf "%s\n" "${YTFZF_TEMP_DIR}"/*)
set -f
instance_count=$(echo "$instances" | wc -l)
if [ "$instance_count" -gt 1 ]; then
printf "%s\n" "More than 1 ytfzf instance is running, please select one"
echo "$instances" | sed 's/.*\///' | nl
read -r num
instance="$(echo "$instances" | sed -n "${num}p")"
else
instance="$instances"
fi
read -r selected_url < "${instance}/ids"
[ -z "$selected_url" ] && {
printf "%s\n" "This instance is not playing a video"
}
scrape="comments"
search_source="EXT_comments"