made it so i just click file and paste YouTube url
Linux is amazing
#! /usr/bin/bash
echo "Enter a url"
read a
yt-dlp -x $a
made it so i just click file and paste YouTube url
Linux is amazing
#! /usr/bin/bash
echo "Enter a url"
read a
yt-dlp -x $a
You could make it an alias and shorten the number of keystrokes
I prefer keeping my aliases in ~/.bash_aliases, which is sourced in my ~/.bashrc, ie
Then you would just need to source your bashrc to load it the first time.