1*9152e1c5SLionel Sambuc#!/bin/sh 2*9152e1c5SLionel Sambuc# $NetBSD: mkprotocols,v 1.1 2008/05/01 22:01:16 garbled Exp $ 3*9152e1c5SLionel Sambuc# Generate a shaved down protocols file for install media. 4*9152e1c5SLionel Sambuc# 5*9152e1c5SLionel Sambucecho "# \$NetBSD\$" > protocols 6*9152e1c5SLionel Sambucecho "# Shaved down /etc/protocols for installation media" >> protocols 7*9152e1c5SLionel Sambuc/usr/bin/sed -e 's/#.*//' -e '/^$/d' -e 's/ *$//' -e 's/ */ /' ../../etc/protocols >> protocols 8