04-08-2002
nnikunji,
Windows/Dos commands? I think you are mistaken , this is a Unix Q&A Forum. How you want a windows command ?
This is a small definition of get_ops() function on Unix C
get_opt() - get options/arguments from command line argument list. The get_opt() function parses a command line argument list argv seeking for command arguments, option characters/strings and option arguments.
An option character is known if it has been specified in the string of accepted option characters, optstring . optstring may contain the following elements: individual characters, and characters followed by a colon to indicate an option argument is to follow. For example, an option string " x &qout; recognizes an option " -x ", and an option string "x:" recognizes an option and argument " -x argument ". If command argument is recognized get_opt() returns NULL , and optarg points to an argument. If known option character is recognized get_opt() returns option character itself and optarg points to an option argument, if it is anticipated. If current option character is unknown or if current option character demands argument but there is no anticipated argument or if option character is equal to '?' then return value is '?'. When the argument list is exhausted the get_opt() function returns an EOF . It's possible to check for long option by specifying correspondence between option character and option string optname using set_long_opt().
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi ,
I have three funcions f1, f2 and f3 .
f1 calls f2 and f2 calls f3 .
I have a global variable "period" which i want to pass to f3 .
Can i pass the variable directly in the definition of f3 ?
Pls help .
sars (4 Replies)
Discussion started by: sars
4 Replies
2. Shell Programming and Scripting
I have two scripts. script1.sh looks
--------------------------------
#!/bin/bash
display()
{
echo "Welcome to Unix"
}
display
-----------------------------
Script2.sh
#!/bin/bash
sh script1.sh //simply calling script1.sh
------------------------------ (1 Reply)
Discussion started by: mvictorvijayan
1 Replies
3. Programming
Hi.
Problem: I have to parse the payload of a packet. The payload could be in Big Endian Format (network byte order) or little. That depends on a flag present in the header of the packet.
Solution: A horrible solution could be to check for that flag everytime I have to read a field in the... (11 Replies)
Discussion started by: emitrax
11 Replies
4. Shell Programming and Scripting
This is my function which is creating three variables based on counter & writing these variable to database by calling another function writeRecord
but only one record is getting wrote in DB.... Please advise ASAP...:confused:
function InsertFtg
{
FTGSTR=""
echo "Saurabh is GREAT $#"
let... (2 Replies)
Discussion started by: omkar.sonawane
2 Replies
5. Shell Programming and Scripting
Below is my script that is function properly per my conditions but I am facing one problem here that is when one function fails then Iy should not check other functions but it calls the other function too So anyone can help me how could i achieve this?
iNOUT i AM GIVING TO THE... (1 Reply)
Discussion started by: rohit22hamirpur
1 Replies
6. Programming
In gdb, I can call one function with command "call", but how can I step in the function? I don't want to restart the program, but the function had been executed, gdb will execute next statement, and I don't know how to recall the function. (4 Replies)
Discussion started by: 915086731
4 Replies
7. Shell Programming and Scripting
I have a script which does gunzip, zip and untar.
Input to the script is file name and file directory (where file is located)
I am reading the input parameters as follows:
FILENAME=$1
FILEDIR=$2
I have created 3 functions that are as follows:
1) gunzip file
2) unzip file... (2 Replies)
Discussion started by: pinnacle
2 Replies
8. Shell Programming and Scripting
Dear All.
I have a script, which process files one by one. In the script I have two functions.
one sftp files to different server
the other from existing file create file with different name.
My question is:
Will sftp function recognize files names , which are created in another... (1 Reply)
Discussion started by: digioleg54
1 Replies
9. Shell Programming and Scripting
Hi,
I am having script which contains many functions. Need to print each function name at the starting of the function. Like below,
functionname()
{
echo "functionname"
commands....
}
I've tried like below,
func=`grep "()" scriptname | cut -d "(" -f1`
for i in $func
do
nawk -v... (4 Replies)
Discussion started by: Sumanthsv
4 Replies
10. Shell Programming and Scripting
Hi All,
Good Day, seeking for your assistance on how to not perform my 2nd, 3rd,4th etc.. function if my 1st function is in else condition.
#Body
function1()
{
if
then
echo "exist"
else
echo "not exist"
}
#if not exist in function1 my all other function will not proceed.... (4 Replies)
Discussion started by: meister29
4 Replies
getopt(3C) getopt(3C)
NAME
getopt(), optarg, opterr, optind, optopt - get option letter from argument vector
SYNOPSIS
DESCRIPTION
returns the next option letter in argv (starting from that matches a letter in optstring. argc and argv are the argument count and argu-
ment array as passed to optstring is a string of recognized option characters; if a character is followed by a colon, the option takes an
argument which may or may not be separated from it by whitespace.
is the index of the next element of the vector to be processed. It is initialized to 1 by the system, and updates it when it finishes with
each element of
returns the next option character from argv that matches a character in optstring, if there is one that matches. If the option takes an
argument, sets the variable to point to the option argument as follows:
o If the option was the last character in the string pointed to by an element of argv, then contains the next element of argv, and is
incremented by 2. If the resulting value of is greater than or equal to argc, this indicates a missing option argument, and returns
an error indication.
o Otherwise, points to the string following the option character in that element of argv, and is incremented by 1.
If, when is called, is NULL, or the string pointed to by either does not begin with the character or consists only of the character returns
-1 without changing If points to the string returns -1 after incrementing
If encounters an option character that is not contained in optstring, it returns the question-mark character. If it detects a missing
option argument, it returns the colon character if the first character of optstring was a colon, or a question-mark character otherwise.
In either case, sets the variable to the option character that caused the error. If the application has not set the variable to zero and
the first character of optstring is not a colon, also prints a diagnostic message to standard error.
The special option can be used to delimit the end of the options; -1 is returned, and is skipped.
RETURN VALUE
returns the next option character specified on the command line. A colon is returned if detects a missing argument and the first character
of optstring was a colon
A question-mark is returned if encounters an option character not in optstring or detects a missing argument and the first character of
optstring was not a colon
Otherwise, returns -1 when all command line options have been parsed.
EXTERNAL INFLUENCES
Locale
The category determines the interpretation of option letters as single and/or multi-byte characters.
International Code Set Support
Single- and multibyte character code sets are supported.
ERRORS
fails under the following conditions:
[EILSEQ] An invalid multibyte character sequence was encountered during option processing.
EXAMPLES
The following code fragment shows to process arguments for a command that can take the mutually exclusive options and and the options and
both of which require arguments:
#include <stdio.h>
#include <unistd.h>
main (int argc, char *argv[])
{
int c;
int bflg, aflg, errflg;
extern char *optarg;
extern int optind, optopt;
.
.
.
while ((c = getopt(argc, argv, ":abf:o:")) != -1)
switch (c) {
case 'a':
if (bflg)
errflg++;
else
aflg++;
break;
case 'b':
if (aflg)
errflg++;
else {
bflg++;
bproc( );
}
break;
case 'f':
ifile = optarg;
break;
case 'o':
ofile = optarg;
break;
case ':': /* -f or -o without arguments */
fprintf(stderr, "Option -%c requires an argument
",
optopt);
errflg++;
break;
case '?':
fprintf(stderr, "Unrecognized option: - %c
",
optopt);
errflg++;
}
if (errflg) {
fprintf(stderr, "usage: . . . ");
exit(2);
}
for ( ; optind < argc; optind++) {
if (access(argv[optind], 4)) {
.
.
.
}
WARNINGS
Options can be any ASCII characters except colon question mark or null
SEE ALSO
getopt(1), thread_safety(5).
STANDARDS CONFORMANCE
getopt(3C)