#!/bin/bash

if [ "$1" == "admin" ];then
    exit 0
fi

sudo -u "$1" test -w "$2"
