#!/bin/bash
# Handy script to remove a package from the devel release.
# TODO: replace with invocation of mass-cve-edit
for pkg in "$@"; do
    perl -pi -e 's/^(devel_'"$pkg"':).*/$1 DNE/;' active/CVE-*
done
