home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / managers / mc-3.2 / mc-3 / mc-3.2.1 / create_vcs < prev    next >
Encoding:
Text File  |  1996-05-17  |  339 b   |  21 lines

  1. #!/bin/sh
  2. #
  3. # Script by Jakub Jelinek
  4. #
  5. if test -e /dev/vcs0
  6. then
  7.     exit
  8. fi
  9.  
  10. I=0
  11. while [ $I -lt 64 ] 
  12. do
  13.         mknod /dev/vcs$I c 7 $I
  14.         chmod 622 /dev/vcs$I
  15.         chown root.tty /dev/vcs$I
  16.         mknod /dev/vcsa$I c 7 `expr $I + 128`
  17.         chmod 622 /dev/vcsa$I
  18.         chown root.tty /dev/vcsa$I
  19.         I=`expr $I + 1`
  20. done
  21.