dotfiles/.local/bin/ytdl

21 lines
237 B
Bash
Executable File

#!/bin/bash
actualpwd="$PWD"
temp=$(mktemp -d)
cd "$temp"
for file in "${actualpwd}/"*
do
ln -s "$file" ./
done
youtube-dl -o '%(title)s.%(ext)s' "$@" --exec "mv -n {} \"${actualpwd}/\""
status="$?"
#rm -rf "$temp"
exit $status