#! /bin/sh -e

# strip-ram-field
#
# This one-line script strips the fictional "Ramification:" field from a
# Packages file.  It acts as a filter, taking the existing Packages
# on stdin, printing the stripped Packages on stdout.

sed -ne '/^Ramification:/!p'

