Sponsored Content
Top Forums Programming Changing the way arguments are read from program Post 302599220 by kristinu on Thursday 16th of February 2012 01:05:23 PM
Old 02-16-2012
Ok, so I now have the following two functions and want to integrate them together so that the user can pass arguments in two different ways:

Code:
--vmod=jcdint.cmd

or

Code:
--vmod  jcdint.cmd

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

  int  i;
  int  poseq;

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

  List<int>  Ord; Ord += 0;

  ifstream  ifs;

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

      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.Substr(0, poseq-1) );
          Ends = S.ToEnd( poseq + 1 );
          Index += ParseEl(Name, Ends, Ord);
      }

  }

  Ptr = 0;

}

////////////////////////////////////////////////////////////////////////////////////////////////////

// Reading arguments from the command line

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

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

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

  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]);
      StrSize = S.size();
      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);
          cout << poseq << "\n";
          if (poseq == 0) { Name = ToUpper( S.ToEnd( poseq + 2 ) );
          } else { error("Bad command line argument: " + S);
          }

          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
XScreenSaver(1) 					      General Commands Manual						   XScreenSaver(1)

NAME
ifs - draws spinning, colliding iterated-function-system images SYNOPSIS
ifs [-display host:display.screen] [-foreground color] [-background color] [-window] [-root] [-mono] [-install] [-visual visual] [-ncolors integer] [-delay microseconds] DESCRIPTION
The ifs program draws spinning, colliding iterated-function-system images. OPTIONS
ifs accepts the following options: -window Draw on a newly-created window. This is the default. -root Draw on the root window. -mono If on a color display, pretend we're on a monochrome display. -install Install a private colormap for the window. -visual visual Specify which visual to use. Legal values are the name of a visual class, or the id number (decimal or hex) of a specific visual. -ncolors integer How many colors should be used (if possible). Default 200. The colors used cycle through the hue, making N stops around the color wheel. ENVIRONMENT
DISPLAY to get the default host and display number. XENVIRONMENT to get the name of a resource file that overrides the global resources stored in the RESOURCE_MANAGER property. SEE ALSO
X(1), xscreensaver(1), xlock(1) COPYRIGHT
Copyright (C) 1997 by Massimino Pascal. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, pro- vided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in sup- porting documentation. AUTHOR
Massimino Pascal <Pascal.Massimon@ens.fr>, 1997. Ability to run standalone or with xscreensaver added by Jamie Zawinski <jwz@jwz.org>, 10-May-97. X Version 11 10-May-97 XScreenSaver(1)
All times are GMT -4. The time now is 05:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy