xref: /plan9/sys/src/9/pcboot/unbindpc (revision 25210b069a6ed8c047fa67220cf1dff32812f121)
1#!/bin/rc
2# unbindpc - unbind files from ../pc into .
3if (! test -e etherigbe.c)
4	exit ''
5
6rfork e
7for (f in `{ls -d pc?*pxe | grep -v '\.'})
8	unmount $f >[2]/dev/null
9unmount .
10unmount /tmp/blank
11# unmount ../port/systab.h
12exit ''
13