#!/bin/sh
# Simple program that changes ownership to the current
# user, recursively.
sudo chown -R $(whoami):$(whoami) $1
