#!/bin/sh -efu

. girar-sh-functions

PROG=girar-quota

[ -n "${USER:-}" ] || 
	fatal "USER undefined"

# do not check args, just show quota and filter out username.
quota -ils |fgrep -ve "user $USER"
