diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-15 23:13:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-15 23:13:49 +0000 |
commit | 523c7f241d48258408bb464d318415d393fda55e (patch) | |
tree | e3724fe358dab506302952cb9046ab5d192ec2cb | |
parent | d39966a2d0b5dd0a6f1adae59721d4cbece8f9cb (diff) |
tidy up the script
-rw-r--r-- | etc/ttys.pty | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/etc/ttys.pty b/etc/ttys.pty index cbecb3d0b47..ea7fe545905 100644 --- a/etc/ttys.pty +++ b/etc/ttys.pty @@ -18,10 +18,8 @@ letters="p q r s t u v w x y z P Q R S T" suffixes="0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q \ r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z" -for i in ${letters} -do - for j in ${suffixes} - do - echo "tty${i}${j} none network" - done +for i in ${letters}; do + for j in ${suffixes}; do + echo "tty${i}${j} none network" + done done |