#!/usr/bin/env sh

read artist
read title
read album

echo "Artist=$artist"
echo "Title=$title"
echo "Album=$album"
