#!/bin/bash

if [ "`whoami`" != "root" ] ; then \
	echo "You must run this script as root" ;
	echo;
	return;
fi

for i in 1 2 3 4 5 6 7 8
do
	echo "Making device for Relais no $i"
	`mknod /dev/relais$[i--] -m 666 c 60 $i`
done

