#!/bin/sh case "$1" in */rfc/txt/rfc*.txt) sed -e '1,+2d' -e '/\f/d' "$1" ;; *) exit 1 ;; esac