chiark / gitweb /
[PATCH] fix special file mode mask for temporary device node
[elogind.git] / test / test.tty
index d5e2d6715dc7bd9afff037db8044fe0a009403e4..b89ad5a6d81e16fd58231129bf54de64bce3bd18 100644 (file)
@@ -11,10 +11,10 @@ if [ $# = "0" ] ; then
 fi
 
 SYSFSDIR=/sys          # change this for a nonstand sysfs mount point
-BIN=./udev             # location of your udev binary
+BIN=../udev            # location of your udev binary
 export ACTION=$1       # 'add' or 'remove'
 
 for i in ${SYSFSDIR}/class/tty/*; do
-       export DEVPATH="/"`echo $i | cut --delimiter='/' --fields=3-`
+       export DEVPATH=${i#${SYSFSDIR}}
        $BIN tty
 done