Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

terms(5) [suse man page]

TERMS(5)							File Formats Manual							  TERMS(5)

NAME
terms - database of blessed terminals for xtermset. DESCRIPTION
The terms database is a file whichs tells xtermset which terminals are controllable. terms is usually located in /usr/share/xtermset and it is an ASCII file. A blessed terminal is described in one line. There are several modifiers which affect the way how xtermset interprets the TERM variable. ^<term-name> tells xtermset that $TERM should begin with <term-name> <term-name>$ tells xtermset that $TERM should begin with <term-name> <term-name> tells xtermset that $TERM must contain <term-name> You can combine the ^ and the $ options to create an exact match for $TERM File Formats Dec 2000 TERMS(5)

Check Out this Related Man Page

XTERMSET(1)						      General Commands Manual						       XTERMSET(1)

NAME
xtermset - change settings of an xterm SYNOPSIS
xtermset [-option ...] DESCRIPTION
xtermset allows you to change the characteristics of an xterm window from the command line. Most options have the same names as those that you would give xterm at startup. OPTIONS
-store [<filename>] This option will save all the other command line options given to the filename. If filename is omitted then the options will be written to ~/.xtermsetrc. -default [<filename>] This option will load options from the specified filename. If the filename is omitted then the options will be loaded from ~/.xtermsetrc. Options specified on the command line preceed those that are in the options file. -f, -force xtermset normally checks if you are using it on a correct terminal (xterm (derivative) or dtterm (derivative). With this option you can override this checking. -T string, -title string Sets the window title. -n string Sets the icon name. -fg color Sets the VT100 foreground color. -bg color Sets the VT100 background color. -mousefg color Sets the mouse pointer foreground color. -mousebg color Sets the mouse pointer background color. -tekfg color Sets the Tektronix emulation window foreground color. -tekbg color Sets the Tektronix emulation window background color. -cr color Sets the text cursor color. -hc color Sets the color for highlighted (selected) text. -fn font-spec, -font font-spec Sets the font. -geom geometry-spec, -geometry geometry-spec Sets the window size and position; see X(1) for details. FILES
~/.xtermsetrc SEE ALSO
bash(1), xterm(1), X(1) BUGS
-geom does not support offsets from the left or bottom of the screen. If the geometry-spec isn't in the correct format, the output will be strange. AUTHORS
Breyten Ernsting (bje@dds.nl) Decklin Foster (decklin@home.com) User Commands Dec 2000 XTERMSET(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Color and Users

We work with Digital Workstations and some NT-Workstation which communicate by a reflection software (WRQ) with the UNIX-Server. We changed our main application (GIS-System) to true-color. Since the change two of our users with the reflection software can't start the application anymore. One is... (5 Replies)
Discussion started by: arn_ch
5 Replies

2. UNIX for Dummies Questions & Answers

how do i run unix?

wut is it? im really illeterate to this stuff. where do i download it? im confused.:confused: (4 Replies)
Discussion started by: Bizzy
4 Replies

3. UNIX for Dummies Questions & Answers

Where did my programs go?

I notice that (Mandrake) Linux and Windows do not seem to operate alike in terms of installing third party software. Windows, on one hand, creates icons and adds items to the Start Menu, with the help of the InstallShield--or equivalent, of course, but Linux, on the other hand, seems to care... (3 Replies)
Discussion started by: helvetica
3 Replies

4. UNIX for Dummies Questions & Answers

Toshiba laptop

I am trying to install mandrake 8.0 on my Satellite Pro 4600. I have got it installed but I am having problems with X windows. The laptop has a trident cyber blade video card I have it set to 1024x768 resolution Basically everytime I start x it appears in the upper right to middle of the screen... (6 Replies)
Discussion started by: gennaro
6 Replies

5. UNIX for Dummies Questions & Answers

Can I ghost a Unix Box ? with another

I have a Solaris Ultra 10 Box, which contains all my software, I got a new Sun Ultra10 with the same configuration. Can I ghost the it ? Does Unix support any such application. (6 Replies)
Discussion started by: stephen104
6 Replies

6. Programming

UNIX Internals, Help required...

I know UNIX user level commands, shell scripts. But i have no idea about kernel level programming and networking. I know the terms semaphore,IPC,socket programming. But i don't know in details what are these. I need to know the following. 1. Unix kernel level programming. 2. Unix Internals. 3.... (4 Replies)
Discussion started by: digdarshan
4 Replies

7. Shell Programming and Scripting

How to strip out common terms in string

Hi, I have this kinda of data:- 0,0,0,0,1,2,0,4,5,6,7,foo 0,0,0,0,1,4,0,5,5,5,5,foo1 0,0,6,0,1,6,0,6,1,2,3,orange etc... I wanted to remove the 0 which occur on the same rows of foo,foo1 and orange in this case. Desired output is:- 0,1,2,4,5,6,7,foo 0,1,4,5,5,5,5,foo1... (9 Replies)
Discussion started by: ahjiefreak
9 Replies

8. Shell Programming and Scripting

Determining Word Frequency of Specific Terms

Hello, I require a perl script that will read a .txt file that contains words like 224.199.207.IN-ADDR.ARPA. IN NS NS1.internet.com. 4.200.162.207.in-addr.arpa. IN PTR beeriftw.internet.com. arroyoeinternet.com. IN A 200.199.227.49 I want to focus on words: IN... (23 Replies)
Discussion started by: richsark
23 Replies

9. Shell Programming and Scripting

Grepping multiple terms with different arguments

Grep -e 'term1' -A1 -e 'term2' -A3The above code always searches for either term and prints results + next three lines. I'm trying to print out: foo foo foo term1 bar bar bar line right after the above -- la la la la term2 so so so line right after the above and again and again I've... (7 Replies)
Discussion started by: dkozel
7 Replies

10. Shell Programming and Scripting

Find common terms in two text file, xargs, grep

Hello, I'm interested in finding all occurrences of the terms in file1 in file2, which are both csv files. I can do this with a loop but I'm interested in knowing if I can also do it with the help of xargs and grep. What I have tried: cat file1 | xargs grep file2 The problem is that... (15 Replies)
Discussion started by: eon
15 Replies

11. UNIX for Advanced & Expert Users

Google Translate API with wget (only one client and connection): Suspected Terms of Service Abuse

Hi Script > grep translate .bashrc translate(){ wget -qO- "http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q=$1&langpair=$2|${3:-en}" | sed 's/.*"translatedText":"\(*\)".*}/\1\n/'; } error > translate "Ich will schwimmen" de en {"responseData": null,... (5 Replies)
Discussion started by: slashdotweenie
5 Replies

12. UNIX for Dummies Questions & Answers

Searching for terms contained in 2 separate files

Hi All ! As a dummy, I try to search for multiple string of characters contained in 2 types of list. Not clear? No it's not. Example: I have a tab-delimited file called "inventory" with 2 columns that looks like that: #ref #year,color xrt3 2000,blue gf5 2000,red,green,yellow... (4 Replies)
Discussion started by: lucasvs
4 Replies

13. Shell Programming and Scripting

Grep multiple terms and output to individual files

Hi all, I'll like to search a list of tems in a huge file and then output each of the terms to individual files. I know I can use grep -f list main.file to search them but how can I split the output into individual files? Thank you. (6 Replies)
Discussion started by: ivpz
6 Replies

14. UNIX for Dummies Questions & Answers

Grep? - using a file of terms to search another file when the information is on a different line

I have a flat file that looks like this, let's call it Chromosome_9.txt: FT /Gene_Name="Guanyl-Acetylase 9" FT /Gene_Number"36952" FT /Gene_Name="Endoplasmic Luciferase" FT /Gene_Number"36953" FT ... (4 Replies)
Discussion started by: Twinklefingers
4 Replies

15. UNIX for Advanced & Expert Users

Pass Multiple Commands and Open Multiple Xterms via PSS

Hello, I'm attempting to open multiple xterms and run a command as an SAP user via sudo using PSSH. So far, I'm able to run PSSH to a file of servers with no check for keys, open every xterm in to the servers in the file list, and SUDO to the SAP(ADM) user, but it won't do anything else... (11 Replies)
Discussion started by: icemanj
11 Replies