#!/bin/sh
echo "Getting Video ID's..."
for id in $(youtube-dl --get-id "$1"); do
	youtube-dl --newline "https://youtu.be/$id" &
done