caca_option(3caca) libcaca caca_option(3caca)NAME
caca_option -
Option parsing.
SYNOPSIS
Data Fields
char const * name
int has_arg
int * flag
int val
Detailed Description
This structure contains commandline parsing information for systems where getopt_long() is unavailable.
Author
Generated automatically by Doxygen for libcaca from the source code.
Version 0.99.beta18 Fri Apr 6 2012 caca_option(3caca)
Check Out this Related Man Page
caca_conio_text_info(3caca) libcaca caca_conio_text_info(3caca)NAME
caca_conio_text_info -
DOS text area information.
SYNOPSIS
Data Fields
unsigned char winleft
unsigned char wintop
unsigned char winright
unsigned char winbottom
unsigned char attribute
unsigned char normattr
unsigned char currmode
unsigned char screenheight
unsigned char screenwidth
unsigned char curx
unsigned char cury
Detailed Description
This structure stores text area information for the DOS conio.h compatibility layer.
Field Documentation
unsigned char caca_conio_text_info::winleft left window coordinate
unsigned char caca_conio_text_info::wintop top window coordinate
unsigned char caca_conio_text_info::winright right window coordinate
unsigned char caca_conio_text_info::winbottom bottom window coordinate
unsigned char caca_conio_text_info::attribute text attribute
unsigned char caca_conio_text_info::normattr normal attribute
unsigned char caca_conio_text_info::currmode current video mode: BW40, BW80, C40, C80, or C4350
unsigned char caca_conio_text_info::screenheight text screen's height
unsigned char caca_conio_text_info::screenwidth text screen's width
unsigned char caca_conio_text_info::curx x-coordinate in current window
unsigned char caca_conio_text_info::cury y-coordinate in current window
Author
Generated automatically by Doxygen for libcaca from the source code.
Version 0.99.beta18 Fri Apr 6 2012 caca_conio_text_info(3caca)
I am trying to write a script that when triggered by an ip address it will run the following
export DAVIDCOUNT=`(fgrep -ce 140.147.146.146 /export/home/ipconnect.txt) >> /local/cron/test_listen_out`;
I think this is my problem line.
What I like this line to do is when it sees the... (6 Replies)
I just got a couple of Solaris boxes (real old, but free) and one of them is booting and says it is in read only mode. I ran fsck but with no change is there some option on fsck I need to use or what could this be? Thanks for any help (6 Replies)
Hey all,
I know there was a post on here at one point about how to get file properties such as create time and such, but I've searched high and low without success.
What I need to do is create a script that runs daily that will expire or remove files that are older than 1 month, or possibly a... (8 Replies)
Hi!!,
my HP-UX - 10.2 compiler doesnt appear to support ANSI style of coding. On compiling my C code, it flags error messages like
error 1705: Function prototypes are an ANSI Feature
Is it a generic problem with the HP compiler or do I need to use some special switches on the command... (9 Replies)
Hi, first post, so hello to all.
I have a Bash scripting problem that is driving me a bit nutty.
It involves a program called 'convert' which is part of the ImageMagick collection.
Normal usage from the commandline is:
$ convert -resize 120x120 inputfile.jpg outputfile.jpg
This is... (7 Replies)
I am writing a script that looks in a reports directory, copies a specified script to a working folder, copies some data files into the working folder, runs the report, zips the new files, then uploads them.
Right now to determine what files to zip (as I don't know how many report files there... (6 Replies)
name:age:girlfriend
aa:11:yes
bb:22:yes
cc:33:no
dd:44:no
ee:55:yes
I want to change the cc, the status of girlfriend to yes.
Find cc, and then change! how can i do this? (16 Replies)
Hi unix gurus....
i need to set a flag inside awk. i tried many methods for that but couldn't succeed :(
like
echo "flag= " $flag
echo "flag= " ${flag}
and so...but not able to show the flag. help me out.
i'm using a if condition inside awk... help me out with correct syntax to set a... (7 Replies)
hello all,
i have the below script that we used to backup our DB using oracle's utility called RMAN. This has been working fine, but the issue is when the backup fails and we re-start it, it backups the whole thing again. Example.
lets say i have 5 database on my system(db1,db2,db3,db4,db5)... (11 Replies)
I have an input file that looks something like this:
....
key1: ABC
....
key2: DEF
....
key1: GGG
....
key2: HHH
....
The row of dots represents any number of lines that don't contain the strings "key1:" or "key2:" The strings key1: and key2: will always appear alternately as in the... (8 Replies)
Hi Members,
I'm confused with grep -F option. Goal is to get all the lines from file2 that have exact gene name from gene list (file one).
File one has list of genes:
File two has lot more information pertinent to genes in file one:
I use three following commands:
1)
grep -wf gene... (9 Replies)