From 40178d3a7733ef78a9a9b0e06fc535ec0e5dbc97 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 11 Aug 1998 17:35:57 +0000 Subject: [PATCH] *** empty log message *** --- tests/stty/simple-1 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/stty/simple-1 b/tests/stty/simple-1 index 0dcd027..ffeee81 100755 --- a/tests/stty/simple-1 +++ b/tests/stty/simple-1 @@ -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 -- 2.7.4