Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

getunimap(8) [suse man page]

GETUNIMAP(8)							       Linux							      GETUNIMAP(8)

NAME
getunimap - dump the unicode map for the current console to stdout SYNOPSIS
getunimap [ -s ] [ -C console ] DESCRIPTION
The getunimap program is old and obsolete. It is now part of setfont (1). The getunimap program outputs the unicode map (also called a "Screen Font Map") for the current console to standard output. The -C option may be used with Linux 2.6.1 and later to get the map for a console different from the current one. Its argument is a path- name. The output of getunimap is of the form 0xAA U+1234 # comment where 0xAA is the font character code and U+1234 is a unicode character, that if displayed, will be displayed using glyph 0xAA in the font. Many unicode characters may be mapped to the same glyph. the Hash symbol # is used as a comment delimiter; characters after a hash sign (to the end of the line) are comments. The -s option will sort and merge elements, sorting on font character. Hence, it will produce output of the form: 0x22 U+1234 U+5678 U+3456 0x23 U+0023 etc., listing the multiple unicode characters that map to a font glyph. The output of getunimap is of the form accepted by setfont and psfaddtable SEE ALSO
psfaddtable(1), setfont(1). Console Tools 2004-01-01 GETUNIMAP(8)

Check Out this Related Man Page

PSFADDTABLE(1)						      General Commands Manual						    PSFADDTABLE(1)

NAME
psfaddtable - add a Unicode character table to a console font SYNOPSIS
psfaddtable fontfile tablefile outfile DESCRIPTION
psfaddtable takes a console font in .psf format given by fontfile and merges it with the Unicode character table given by tablefile to pro- duce a font file with an embedded character table, which is written to outfile. An input file name of "-" denotes standard input, and an output file name of "-" denotes standard output. If the fontfile already contains an embedded character table, it is ignored. TABLE FILE FORMAT
Each line in the tablefile should be either blank, contain a comment (preceded by #), or contain a sequence of numbers in either decimal (default), octal (preceded by 0), or hexadecimal (preceded by 0x) format, separated by spaces or tabs. The first number on each line indi- cates the glyph slot in the font that is being referred to, this is between 0 and 0xff for a 256-character font and 0 and 0x1ff for a 512-character font. Any subsequent numbers on the same line are Unicodes matched by this specific glyph slot. Instead of a single Unicode one may have a sequence of Unicodes separates by commas, to denote that the glyph depicts the corresponding composed symbol. It is permis- sible to have multiple lines for the same glyph. SEE ALSO
setfont(8), psfgettable(1), psfstriptable(1), psfxtable(1) 25 Oct 1994 PSFADDTABLE(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing whitespace from files

Hello, I was wondering if there was a way to write a script to do the following: turn a file that contains: 1234 Kevin Smith 12:09 456235 1234 John Robger 12:09:09 353657 into: 1234%Kevin%Smith%12:09%456235... (10 Replies)
Discussion started by: kevin80
10 Replies

2. Shell Programming and Scripting

compare 2 files..

Hello..I am trying to find solution for this: I have 2 files A and B A: 1234 2345 3211 1111 5555 6666 7777 8888 9876 B: (8 Replies)
Discussion started by: amon
8 Replies

3. Shell Programming and Scripting

make multiple line containing a pattern into single line

I have the following data file. zz=aa azxc-1234 aa=aa zz=bb azxc-1234 bb=bb zz=cc azxc-1234 cc=cc zz=dd azxc-2345 dd=dd zz=ee azxc-2345 ee=ee zz=ff azxc-3456 ff=ff zz=gg azxc-4567 gg=gg zz=hh azxc-4567 hh=hh zz=ii azxc-4567 ii=ii I want to make 2nd field pattern matching multiple lines... (13 Replies)
Discussion started by: VTAWKVT
13 Replies

4. Shell Programming and Scripting

string manipulation

i have a file that contains a pattern like this: ajay 1234 newyork available kumar 2345 denver singh 2345 newyork ajay 3456 denver kumar 3456 newyork singh 3456 delhi available ajay 4567 miami kumar 4567 miami singh 4567 delhi i want to search for each line... (5 Replies)
Discussion started by: ajay41aj
5 Replies

5. Shell Programming and Scripting

File Manipulation...

Hi Freinds, :b: i have a flat file with below format... 1234,Hary,102.55 4567,Maria,250.40 78942,suzan,261.60 48965,Harun,179.32 so I need a script that can get me as below format... 1) 1234,Hary,103 2) 4567,Maria,250 3) 78942,suzan,262 4) 48965,Harun,179 Which means, it... (6 Replies)
Discussion started by: malcomex999
6 Replies

6. Shell Programming and Scripting

Need to remove few characters from each line till a pattern is matched

Hi All, I want to remove first few characthers from starting of the line till ',' Comma... which needs to be done for all the lines in the file Eg: File content 1,"1234",emp1,1234 2,"2345",emp2,2345 Expected output is ,"1234",emp1,1234 ,"2345",emp2,2345 How can parse... (4 Replies)
Discussion started by: kiranlalka
4 Replies

7. UNIX for Dummies Questions & Answers

How to remove comma from the last line of the file

Hi, I have a file which has records which end with a comma. for example: My file looks like 1234, 5678, 3455, 3566, 4444, 9999, I need to remove comma for the last line in the file so that my file should look like: 1234, 5678, 3455, (5 Replies)
Discussion started by: sandeep_1105
5 Replies

8. Shell Programming and Scripting

AIX command to shift up

I would need the awk command or a better way to get my file that looks like 1234 5678 8912 3456 7890 to look like 1234,5678,8912,3456,7890 Thanks in advance (4 Replies)
Discussion started by: bombcan
4 Replies

9. Shell Programming and Scripting

merge files based on line by line

Hi, lets assume the following details.. file 1 has below details abc|1234|xyz abc1|1234|xyz1 abc2|1234|xyz2 and file 2 has below details pqr|124|lskd ebwer|325|dfb wf|234|sdb I need out put shown below abc|1234|xyz pqr|124|lskd abc1|1234|xyz1 ebwer|325|dfb abc2|1234|xyz2... (4 Replies)
Discussion started by: alnhk
4 Replies

10. Shell Programming and Scripting

perl or awk, field length check

Hi Everyone, 1.txt a;1234;134;1111111 b;123;123;1111111 c;123;1334;1111111 d;1234;1234;1111111 output a;1234;134;1111111 c;123;1334;1111111 d;1234;1234;1111111 if field2 legth>3 or field3 length >3, then output. Please advice. Thanks (4 Replies)
Discussion started by: jimmy_y
4 Replies

11. UNIX for Advanced & Expert Users

Perl parsing help required.

Hello, I got a file like this. 5201 5202 5203 5204 1234 2345 3456 4567 6210 6220 6230 6240 The required output should be 5201 1234 6210 (9 Replies)
Discussion started by: suverman
9 Replies

12. Shell Programming and Scripting

How to truncate a string to x number characters?

Hello: I have a large file which contains lines like the following: 1/t123ab, &Xx:1:1234:12345:123456@ABCDEFG... at -$100.00% /t is a tab, spaces are as indicated the string "&Xx:1:1234:12345:123456$ABCDEFG..." has a slightly variable number of numbers and letters, but it always starts... (9 Replies)
Discussion started by: Tectona
9 Replies

13. Shell Programming and Scripting

Same Line

Here is what I have in my file. "1234"|"1234"|"1234"|"1234" "1234"|"1234"|"1234"|"12 34" "1234"|"1234"|"1234"|"1234" "1234"|"1234"|"1234"|"1234" expected output to be like below. "1234"|"1234"|"1234"|"1234" "1234"|"1234"|"1234"|"1234" "1234"|"1234"|"1234"|"1234"... (5 Replies)
Discussion started by: userraone
5 Replies

14. Shell Programming and Scripting

Make multiple lines into single quoted comma separated Linux

Hi, I want to change a file file1.txt: 1234 3456 2345 6789 3456 2333 4444 As, file2.txt in Linux: '1234','3456','2345','6789','3456','2333','4444' Could someone please help me. (Single liner sed, awk will be welcome!) (7 Replies)
Discussion started by: wiweq05
7 Replies

15. Shell Programming and Scripting

Merge files based on columns

011111123444 1234 1 20000 011111123444 1235 1 30000 011111123446 1234 3 40000 011111123447 1234 4 50000 011111123448 1234 3 50000 File2: 011111123444,Rsttponrfgtrgtrkrfrgtrgrer 011111123446,Rsttponrfgtrgtr 011111123447,Rsttponrfgtrguii 011111123448,Rsttponrfgtrgtjiiu I have 2 files... (4 Replies)
Discussion started by: vinus
4 Replies