Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

underscore(3) [netbsd man page]

CURSES_UNDERSCORE(3)					   BSD Library Functions Manual 				      CURSES_UNDERSCORE(3)

NAME
curses_underscore, underscore, underend, wunderscore, wunderend -- curses underscore attribute manipulation routines LIBRARY
Curses Library (libcurses, -lcurses) SYNOPSIS
#include <curses.h> int underscore(void); int underend(void); int wunderscore(void); int wunderend(void); DESCRIPTION
These functions manipulate the underscore attribute on stdscr or on the specified window. The underscore() function turns on the underscore attribute on stdscr. The underend() function turns off the underscore attribute on stdscr. The wunderscore() and wunderend() functions are equivalent to underscore() and underend(), respectively, excepting that the attribute is manipulated on the window specified by win. The underscore() and underend() functions are equivalent to wattron(A_UNDERLINE) and wattroff(A_UNDERLINE), respectively. RETURN VALUES
These functions always return 1. SEE ALSO
curses_attributes(3), curses_standout(3) STANDARDS
The NetBSD Curses library complies with the X/Open Curses specification, part of the Single Unix Specification. HISTORY
These functions first appeared in NetBSD 1.5. BSD
October 13, 2002 BSD

Check Out this Related Man Page

CURSES_STANDOUT(3)					   BSD Library Functions Manual 					CURSES_STANDOUT(3)

NAME
curses_standout, standout, standend, wstandout, wstandend -- curses standout attribute manipulation routines LIBRARY
Curses Library (libcurses, -lcurses) SYNOPSIS
#include <curses.h> int standout(void); int standend(void); int wstandout(void); int wstandend(void); DESCRIPTION
These functions manipulate the standout attribute on stdscr or on the specified window. The standout() function turns on the standout attribute on stdscr. The standend() function turns off the standout attribute on stdscr. The wstandout() and wstandend() functions are equivalent to standout() and standend(), respectively, excepting that the attribute is manipu- lated on the window specified by win. The standout() and standend() functions are equivalent to attron(A_STANDOUT) and attroff(A_STANDOUT), respectively. RETURN VALUES
These functions always return 1. SEE ALSO
curses_attributes(3), curses_underscore(3) STANDARDS
The NetBSD Curses library complies with the X/Open Curses specification, part of the Single Unix Specification. HISTORY
The Curses package appeared in 4.0BSD. BUGS
On modern terminals that support other attributes, there is no difference between characters displayed with the standout attribute set and those displayed with one of the other attributes set (usually bold). It is best to avoid using standout if the terminal supports other attributes. BSD
October 13, 2002 BSD
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

rename using mv ?

Hi all how can can remove the underscore from this number in this series _1234567.abc _1234567.abcd I was trying mv _1234567* 1234567 but did not work ? thanks s (2 Replies)
Discussion started by: simon2000
2 Replies

2. Shell Programming and Scripting

allow only alphnumeric entry and an underscore

I am taking an user input which should only be an alphanumeric character or an underscore. How to i do it? (2 Replies)
Discussion started by: vickylife
2 Replies

3. UNIX for Dummies Questions & Answers

Replacing underscore with white space after comma.

Hi all, I'm hoping you can help.. I've used this forum a couple of times and I am back again now i've moved onto something more complex (for me!) I have some data which looks like: "AL1_1,AL1_1," "AL1_1.AL1_1A.AL1_1AE,AL1_1AE," "AL1_1.AL1_1A.AL1_1AG,AL1_1AG," "AL1_1.AL1_1A.AL1_1AJ,AL1_1AJ,"... (10 Replies)
Discussion started by: gman
10 Replies

4. Shell Programming and Scripting

egrep string except when preceded by underscore

having trouble with this seemingly simple taks.. :mad: Test data: we want to keep lines 2,3 & 4 -- want to exclude when ${.*schema} is preceded with an underscore; Valid {.*schema} should always be preceded spaces or be found at the beginning of a line. egrep... (5 Replies)
Discussion started by: danmauer
5 Replies

5. Shell Programming and Scripting

Help with AWK Please

I have a file like ABCD_1_0 ABCD_25_6 ABCD_326_12 ABCD_10_3 where ABCD (can be something else) but always 4 characters followed by a underscore and then numbers that go from 1-9999 and then followed by underscore and then a number that can go from 0-100 from this file I want to... (5 Replies)
Discussion started by: digipak
5 Replies

6. UNIX for Advanced & Expert Users

google search changes with an underscore

How does adding an underscore change a google search? I was searching for John Elway and got different results with and without an unscore. (3 Replies)
Discussion started by: cokedude
3 Replies

7. Shell Programming and Scripting

Expect language separating two string connected by _(underscore)

Hi Folks, Anybody has an idea how to split string based on separator _ (underscore) in Expect programming language? e.g.if string is scmid1_scmid2 , i need to separate these two strings as scmid1 and scmid2. Thanks in advance. Sanket (1 Reply)
Discussion started by: Sanket
1 Replies

8. Shell Programming and Scripting

Insert underscore at certain places

Hi all, I have to insert underscore at certain places(places before and after PAxxx/PAxxxx entries in a big file like this ESR1 PA156 leflunomide PA450192 CHST3 PA26503 docetaxel tungstate Pa4586; thalidomide Pa34958; PAxxx/PAxxxx entries are metioned between 2 names in each row ... (4 Replies)
Discussion started by: manigrover
4 Replies

9. Shell Programming and Scripting

Insert underscore in place of column

Hi I tried to put underscore in place of column in a big file with lots of oclumns using the programm sed 's//_/g' Its showing error bash-3.2$ sed 's//_/g'saradrugbankgenedrugnewlist.txt >saradrugbankgenedrugnewlist3.txt sed: -e expression #1, char 11: unknown option to `s' if... (24 Replies)
Discussion started by: manigrover
24 Replies

10. UNIX for Dummies Questions & Answers

RegEX help needed

Hi, Have to filter out string before the last underscore in the following input: UNIX_Solaris_59_KSH output: UNIX_Solaris_59 dummy one but :mad: Thanks & Regards, Sourabh Singh Khichi (4 Replies)
Discussion started by: skhichi
4 Replies

11. Shell Programming and Scripting

Searching a string in a particular file name

Hello, I have a file name like FIRST_DPF_DAILY_CUST_0826152322.txt i need to extract the string after the third "_" underscore upto timestamp ends i.e CUST_0826152322 can anyone help me with the code Thank you! Regards Srikanth Sagi (3 Replies)
Discussion started by: srikanth_sagi
3 Replies

12. Shell Programming and Scripting

How to rename all files and folder containing underscore?

I want to rename all files and folder containing underscore in name and replace underscore with hyphen. Currently I am using following code, rename '_' '-' */*/* It was working but now it is showing me "Argument list too long" Please help! (2 Replies)
Discussion started by: opticalpigion
2 Replies

13. Shell Programming and Scripting

Swap two characters in a string

I want to swap hyphen (-) and underscore (_) in a string. In fact only one will be present. So if it is hyphen I want to make it underscore and if it is underscore I want to make it hyphen. I can write a long code like below. Is there any easy way? #!/bin/ksh typeset -i exists... (3 Replies)
Discussion started by: Soham
3 Replies

14. UNIX for Beginners Questions & Answers

Cut first value after underscore and replace first two digit with zero in perl

Like I have below string XX_49154534_491553_201_122023_D XX_49159042_491738_201_103901_D and the expected output would be 0154534 0159042 XX and 49 can be dynamic. (1 Reply)
Discussion started by: nadeemrafikhan
1 Replies