#!/usr/bin/perlusestrict;usewarnings;usePiny;my$env=Piny::Environment->new;foreachmy$reponame(@ARGV){my$repo=Piny::Repo->new($reponame);if($repo->owner->uid!=$env->user->uid){printSTDERR"You are not the owner of $reponame!\n";exit1;};$repo->destroy;};