From: greg@kroah.com Date: Tue, 21 Oct 2003 05:45:46 +0000 (-0700) Subject: [PATCH] Changed test.block and test.tty to take ACTION from the command line. X-Git-Tag: 004~4 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8c47999ff59b0235b217fbab4cba0c86b0fd075;p=systemd [PATCH] Changed test.block and test.tty to take ACTION from the command line. --- diff --git a/test.block b/test.block index 781560de..622a6603 100644 --- a/test.block +++ b/test.block @@ -2,9 +2,17 @@ # # test.block - run udev(8) on each block device in /sys/block +if [ $# = "0" ] ; then + echo + echo "usage: $0 " + echo "where is \"add\" or \"remove\"" + echo + exit 1 +fi + SYSFSDIR=/sys # change this for a nonstand sysfs mount point BIN=./udev # location of your udev binary -export ACTION=add # 'add' or 'remove' +export ACTION=$1 # 'add' or 'remove' for i in ${SYSFSDIR}/block/*; do # add each drive diff --git a/test.tty b/test.tty index ec8b1d04..d5e2d671 100644 --- a/test.tty +++ b/test.tty @@ -2,9 +2,17 @@ # # test.tty - run udev(8) on each tty device in /sys/class/tty +if [ $# = "0" ] ; then + echo + echo "usage: $0 " + echo "where is \"add\" or \"remove\"" + echo + exit 1 +fi + SYSFSDIR=/sys # change this for a nonstand sysfs mount point BIN=./udev # location of your udev binary -export ACTION=add # 'add' or 'remove' +export ACTION=$1 # 'add' or 'remove' for i in ${SYSFSDIR}/class/tty/*; do export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`