home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / bin / unicode_start < prev    next >
Text File  |  1999-01-06  |  632b  |  27 lines

  1. #!/bin/sh
  2. # start unicode
  3. #
  4. # When a Unicode symbol is not found in the Unicode mapping table,
  5. # and it is in the range U+0000-00FF, then it is looked up in the
  6. # current translation table; outside that range it is replaced by
  7. # a space. The arguments "-m space" below make sure that also inside
  8. # this range unknown symbols are replaced by spaces.
  9. #
  10. case $# in
  11.     2)
  12.         setfont $1 -u $2 -m space ;;
  13.     1)
  14.         setfont $1 -m space;;
  15.     0)
  16.         setfont
  17.         setfont -u def.uni -m space
  18.         ;;
  19.     *)
  20.         echo "usage: unicode_start [font [unicode map]]"
  21.         ;;
  22. esac
  23.  
  24. kbd_mode -u
  25. # Since 1.2.1 - for older kernels, use: echo -n -e '\033%8'
  26. echo -n -e '\033%G'
  27.