#!/bin/sh if [ $(id -u) -ne 0 ] ; then echo "run me as root!" >&2 exit 1 fi if [ $# -eq 0 ] ; then echo "usage: $0 /dev/lork" >&2 exit 1 fi exit 0