#!/bin/sh

dev=/dev/launder
for n in 0 1 2 3 4 5 6 7
do
	d=$dev$n
	rm -f $d
	mknod $d c 100 $n && chmod 600 $d && chown root $d
done
