4 lines
182 B
Bash
Executable file
4 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
|
|
search=$(printf '%s' "$*" | tr ' ' '+')
|
|
mpv --no-video "https://youtube.com/$(curl -s "https://vid.puffyan.us/search?q=$search" | grep -Eo "watch\?v=.{11}" | head -n 1 )"
|