ohmyzsh/plugins/ytd/ytd.plugin.zsh
2025-08-28 15:11:48 +03:00

17 lines
368 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/zsh
# ytd: YouTube ses indirici Oh My Zsh plugin
ytd() {
if [[ -z "$1" ]]; then
echo "Kullanım: ytd <YouTube linki>"
return 1
fi
# İndirme klasörü
DIR="$HOME"
mkdir -p "$DIR"
# yt-dlp ile mp3 olarak indir
yt-dlp -f bestaudio --extract-audio --audio-format mp3 --no-playlist -o "$DIR/%(title)s.%(ext)s" "$1"
}