*** empty log message ***
authorJim Meyering <jim@meyering.net>
Tue, 11 Aug 1998 17:35:57 +0000 (17:35 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 11 Aug 1998 17:35:57 +0000 (17:35 +0000)
tests/stty/simple-1

index 0dcd027..ffeee81 100755 (executable)
@@ -10,7 +10,14 @@ fi
 
 saved_state=.saved-state
 $STTY --save > $saved_state || exit 1
-trap "status=$?; echo here; $STTY `cat $saved_state`; exit $status" 0 1 2 3 15
+trap "status=$?; $STTY `cat $saved_state`; exit $status" 0 1 2 3 15
 $STTY `cat $saved_state` || exit 1
 
+# Build a list of all boolean options stty accepts on this system.
+options=`stty -a|tail +2|tr ';' '\012'|sed 's/ =.*//;s/^ //'|tr -s ' -' '\012'`
+
+for opt in $options; do
+  echo $opt
+done
+
 exit 0