does anyone know of a command line utility for editing quotas? I don't mean like edquota. I would like to do something like:
./setquota -u testuser --hard 10000
if possible.
Any ideas?
If not i'm thinking of something like:
EDITOR=echo edquota -u testuser | while read item; do sed 's/0\t0/10000\t0/g' $item > $item; done
but thats messy and probably wouldn't work


