dotfiles/.local/bin/ytdl

21 lines
213 B
Plaintext
Raw Normal View History

2018-12-26 00:40:38 +01:00
#!/bin/bash
2019-01-21 08:16:41 +01:00
actualpwd="$PWD"
temp=$(mktemp -d)
cd "$temp"
for file in "${actualpwd}/"*
do
ln -s "$file" ./
done
youtube-dl "$@" --exec "mv -n {} \"${actualpwd}/\""
status="$?"
rm -rf "$temp"
exit $status