Sponsored Content
Top Forums Programming Changing the way arguments are read from program Post 302599118 by kristinu on Thursday 16th of February 2012 09:26:48 AM
Old 02-16-2012
I have changed the code as follows. Any suggestions would be appreciated.
I want to check if the -- is in the front though so then I can take the name. How can I do this?

Code:
void  Parsing::ParseCmd(
  const int  argc,
  char*  argv[]) {

  int  i;
  int  k;
  int  poseq;
  int  skipFlag;

  String  S;
  String  Name;
  String  File;
  String  Ends;

  ifstream  ifs;

  List<int>  Ord;
  Ord += 0;

  skipFlag = 0;
  for (i = 1; i < argc; i++) {

      if (skipFlag == 1) {
        skipFlag = 0;
        continue;                                     // Skips the iteration
      }

      S = String(argv[i]);
      if (S[0] == '?') {
          File = S.ToEnd(1);
          ifs.open((char *)File);
          if (ifs.bad()) { error("Error including file"); }
          ParseFile(ifs);
          ifs.close();
      } else {
          Search(S, "--", poseq);
          Name = ToUpper( S.ToEnd( poseq + 2 ) );
          Ends = String(argv[i+1]);
          Index += ParseEl(Name, Ends, Ord);
          skipFlag = 1;
          cout << Name << " "<< Ends << " " << poseq << "\n";
      }

  }

  Ptr = 0;

}

 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Arguments to a shell program

Hi List, Is it possible to pass one argument to a shell program eg) there is a shell program abc which takes one arguments abc one Due to some reasons I pass abc one two Now one,two must be considered as "one" argument to the shell programs. Any suggestions,hints are welcome. ... (3 Replies)
Discussion started by: csvenkata
3 Replies

2. Shell Programming and Scripting

two arguments with nawk program

Can someone help me to understand this part of code? /bin/nawk -f awkfile file1 file2 I know awkfile is the one with awk script. file1 is source file that needs to be processed. What is file2 two? Thanks for your help! (4 Replies)
Discussion started by: whatisthis
4 Replies

3. Linux

Where to set program arguments in DDD debugger?

In DDD debugger, where to set the the arguments for main program? For example: ./myExe "argv1" "argv2" -> where to set "argv1" & "argv2" ? Thanks! (2 Replies)
Discussion started by: princelinux
2 Replies

4. Shell Programming and Scripting

pass arguments to called program

Thank you very much. (2 Replies)
Discussion started by: ShellUser
2 Replies

5. Shell Programming and Scripting

How to give runtime arguments to different program

I have a shell script that is attempting to call a c program. I call the c program with ./dictool dictool accepts arguments at runtime. It works by prompting the user for various commands, acting on those commands, spitting out an output, and then prompting for more commands. My question is,... (1 Reply)
Discussion started by: aarongoldfein
1 Replies

6. Programming

Program java arguments

Hello, The arguments are strings. In my code I need them to be a different type, I do the cast but it is not feasible ... Have you any idea? Thank you (8 Replies)
Discussion started by: chercheur857
8 Replies

7. Programming

Writing C++ program Arguments and Classes

I want to write a C++ program that uses a class to do some calculations. I pass arguments to the program, some of which are used to set up class members. A class function will then perform the necessary calculations. I am wondering how I should pass the arguments from the program to set the... (2 Replies)
Discussion started by: kristinu
2 Replies

8. Shell Programming and Scripting

Interpreting arguments in Perl program.

Hello. I'm new to Perl and I am not sure how to interpret command line arguments in the program. I am writing a program similar to the Unix utility 'tail' and need to check if first argument is '-1' (1) or any arbitrary number of lines to output. How would I write an 'if' statement to check for... (4 Replies)
Discussion started by: D2K
4 Replies

9. Shell Programming and Scripting

Multiple arguments to read

I am developing a script where 3 other scripts are included. This is a graph related script. COMPLETE IDEA: -There are 3 different graph scripts. I would like to create a master graph with all 3 in one. -User chooses the type of graph -User is asked to enter the required auguments (... (7 Replies)
Discussion started by: newkid.7955
7 Replies

10. Shell Programming and Scripting

How to pass command line arguments to awk program?

#!/bin/awk -f BEGIN { FS=":"; } { if ( $7 == "" ) { print $1 ": no password!"; } } I want to execute this program for a particular user to check for his password from the file /etc/passwd (as the input file) and the user details to be given... (1 Reply)
Discussion started by: sri.phani
1 Replies
XtDisplayInitialize(3Xt)					   XT FUNCTIONS 					  XtDisplayInitialize(3Xt)

NAME
XtDisplayInitialize, XtOpenDisplay, XtDatabase, XtScreenDatabase, XtCloseDisplay - initialize, open, or close a display SYNTAX
void XtDisplayInitialize(app_context, display, application_name, application_class, options, num_options, argc, argv) XtAppContext app_context; Display *display; String application_name; String application_class; XrmOptionDescRec *options; Cardinal num_options; int *argc; String *argv; Display *XtOpenDisplay(app_context, display_string, application_name, application_class, options, num_options, argc, argv) XtAppContext app_context; String display_string; String application_name; String application_class; XrmOptionDescRec *options; Cardinal num_options; int *argc; String *argv; void XtCloseDisplay(display) Display *display; XrmDatabase XtDatabase(display) Display *display; XrmDatabase XtScreenDatabase(screen) Screen* screen; ARGUMENTS
argc Specifies a pointer to the number of command line parameters. argv Specifies the command line parameters. app_context Specifies the application context. application_class Specifies the class name of this application, which usually is the generic name for all instances of this application. application_name Specifies the name of the application instance. display Specifies the display. Note that a display can be in at most one application context. num_options Specifies the number of entries in the options list. options Specifies how to parse the command line for any application-specific resources. The options argument is passed as a parameter to XrmParseCommand. For further information, see Xlib - C Language X Interface. screen Specifies the screen whose resource database is to be returned. DESCRIPTION
The XtDisplayInitialize function builds the resource database, calls the Xlib XrmParseCommand function to parse the command line, and per- forms other per display initialization. After XrmParseCommand has been called, argc and argv contain only those parameters that were not in the standard option table or in the table specified by the options argument. If the modified argc is not zero, most applications simply print out the modified argv along with a message listing the allowable options. On UNIX-based systems, the application name is usually the final component of argv[0]. If the synchronize resource is True for the specified application, XtDisplayInitialize calls the Xlib XSyn- chronize function to put Xlib into synchronous mode for this display connection. If the reverseVideo resource is True, the Intrinsics exchange XtDefaultForeground and XtDefaultBackground for widgets created on this display. (See Section 9.6.1). The XtOpenDisplay function calls XOpenDisplay the specified display name. If display_string is NULL, XtOpenDisplay uses the current value of the -display option specified in argv and if no display is specified in argv, uses the user's default display (on UNIX-based systems, this is the value of the DISPLAY environment variable). If this succeeds, it then calls XtDisplayInitialize and pass it the opened display and the value of the -name option specified in argv as the application name. If no name option is specified, it uses the application name passed to XtOpenDisplay. If the application name is NULL, it uses the last component of argv[0]. XtOpenDisplay returns the newly opened display or NULL if it failed. XtOpenDisplay is provided as a convenience to the application programmer. The XtCloseDisplay function closes the specified display as soon as it is safe to do so. If called from within an event dispatch (for example, a callback procedure), XtCloseDisplay does not close the display until the dispatch is complete. Note that applications need only call XtCloseDisplay if they are to continue executing after closing the display; otherwise, they should call XtDestroyApplicationContext or just exit. The XtDatabase function returns the fully merged resource database that was built by XtDisplayInitialize associated with the display that was passed in. If this display has not been initialized by XtDisplayInitialize, the results are not defined. The XtScreenDatabase function returns the fully merged resource database associated with the specified screen. If the screen does not belong to a Display initilized by XtDisplayInitialize, the results are undefined. SEE ALSO
XtAppCreateShell(3Xt), XtCreateApplicationContext(3Xt) X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface X Version 11 Release 6.6 XtDisplayInitialize(3Xt)
All times are GMT -4. The time now is 10:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy