#!/bin/bash
UID=$1
if [ -z "$UID" ]; then
  echo "No UID provided"
  exit 1
fi
mkdir -p "/var/www/music/$UID"
echo "Created folder: $UID"
