Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xlt(3x) [redhat man page]

Xlt(3X) 																   Xlt(3X)

NAME
Xlt - The LessTif extension library. This consists of several widgets and convenience functions to make LessTif, or if you must Motif, programming more enjoyable. WIDGETS
XltAnimatedButton XltAppShell XltBubbleButton XltEntrySB XltHost XltNumEntry XltSelectionBox CONVENIENCE FUNCTIONS
XltCreateAnimatedButton XltCreateBubbleButton XltCreateHost XltCreateSelectionBox XltVaCreateSelectionBox XltCreateSelectionDialog XltHostSendString XltHostSendData XltHostSelect XltHelpOnHostSelect XltHostCreateTranscript XltHostDiscardOutput XltCreateNumEntry XltNumEntryGetChild XltSoundEnable XltSoundSetup XltHelpOnSound StrokeInitialize StrokeSetDebug StrokeGetDebug StrokeSetMapping StrokeGetMapping XltHelpOnStrokes XltDisplayFallbackResources XltDisplayOptions XltYesNo XltWorking XltWaitTillMapped XltSetClientIcon XltToolBarAddItem XltToolBarConfigure XltRedirectStdErr XltSelectDebugLevel CONVENIENCE MACROS
XltCheckArgSize XltGetArgs XltSetArgs Xlt(3X)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep for a Number in a String

Hi, I have variable called fname that has the value M201401151630_P008949.csv.txt I need to grep and store this in a variable called prcid for the number before ".csv" and the letter "P" excluding all zeros in the beginning. Desired output 8949 Likewise for M201401151630_P108949.csv.txt... (12 Replies)
Discussion started by: mohtashims
12 Replies

2. Programming

Need help with VB code

Hello All, I need a little help with a piece of Visual Basic coding. I have the following code: Sub Assign_New_DB_Report() Sheets("Main Dashboard Summary").Visible = True Sheets("Main Dashboard Summary").Select pdfName = ActiveSheet.Name ChDir ActiveWorkbook.Path & "\" ... (1 Reply)
Discussion started by: bbbngowc
1 Replies

3. Red Hat

Copy mismatch while copying RHEL DVD to folder

Hi, Here is this weird thing happening here. I mounted RHEL 6.6 DVD on a directoy /a, I am trying to copy it's content to another folder by using command: cp -pr /a/* /new/folder But while I run ls -lrt on both locations it show me difference in number of files. Any specific reason for that.... (5 Replies)
Discussion started by: nixhead
5 Replies

4. Ubuntu

Error starting terminal in Ubuntu 14.04.3

I am unfamiliar with below error and how to fix it, it happens when I start the terminal in Ubuntu 14.04.3. I do not send any command only press crtl+alt+T. It seems to indicate that something is missing from PATH but I’m not really sure what. Thank you :). Command 'lesspipe' is... (24 Replies)
Discussion started by: cmccabe
24 Replies

5. Shell Programming and Scripting

Shell script for field wise record count for different Files .csv files

Hi, Very good wishes to all! Please help to provide the shell script for generating the record counts in filed wise from the .csv file My question: Source file: Field1 Field2 Field3 abc 12f sLm 1234 hjd 12d Hyd 34 Chn My target file should generate the .csv file with the... (14 Replies)
Discussion started by: Kirands
14 Replies

6. Shell Programming and Scripting

Tabulate data in a table.

I have about a million tables stored as .txt files in a directory. The content of the files look like this: ages-eligible-for-study: genders-eligible-for-study: accepts-healthy-volunteers: CONTINUE 18-months-to-36-months both yes CONTINUE DONEOther examples, CONTINUE... (8 Replies)
Discussion started by: shoaibjameel123
8 Replies

7. Shell Programming and Scripting

Shell Script with following awk command pls help

Hi I want to create a shell script with the following awk command & also get the filenames in output. awk '/<catetcsecuretty0>/ {p=1} /<catvarlogmessages0>/ {p=0} p' *.xml As there will be multiple outputs related to many xml files I cannot identify which output belongs to which file ... (5 Replies)
Discussion started by: sharp488
5 Replies

8. UNIX for Beginners Questions & Answers

Changing date format with script

I'm trying to change date format using this script from day/month/year to month/day/year #!/bin/bash while read line; do echo "$line" date=$(echo "$line" | cut -d/ -f1 ) month=$(echo "$line" | cut -d/ -f2 ) echo $month"/"$date"/2017" done < ~/Downloads/Dates.csv But I get output as... (5 Replies)
Discussion started by: sharat
5 Replies