#!/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