From 30d2008d3a9ec092e4414dafdce919a64cf127b9 Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 15 Jul 2014 23:13:48 +0000 Subject: [PATCH] tidy up the script --- etc/ttys.pty | 10 ++++------ 1 file 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 -- 2.20.1