Fix markup. Fix backslashes to surive roff.
[netbsd-mini2440.git] / etc / mkttys
blob67e2680fc0e46b5077e71f72cb4d2f5658fbb0d8
1 #!/bin/sh
3 t1="p q r s t u v w x y z P Q R S T"
4 t2a="0 1 2 3 4 5 6 7 8 9 a b c d e f"
5 t2b="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"
7 mkpty()
9 echo "tty$1$2 none network"
12 cat "$@"
13 cat << _EOF
15 # Pseudo-ttys
17 _EOF
19 for x in a b
21 eval w=\$t2$x
22 for i in $t1
24 for j in $w
26 mkpty $i $j
27 done
28 done
29 done