=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/etc/ttys.pty,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/etc/ttys.pty 2004/05/18 16:45:46 1.4 --- src/etc/ttys.pty 2014/07/15 23:13:48 1.5 *************** *** 18,27 **** 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 done --- 18,25 ---- 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 done