Thread: Command line arguments.

  1. #1
    Registered User
    Join Date
    Apr 2002
    Posts
    3

    Command line arguments.

    Hi, I'm a bit of a newbie, I am doing a project for school and it needs to accept command line arguments. I know that I need to use argc and argv the problem is I need to be able to use anything from 1 switch to 3 switches, example 'finds -e bal input.cpp' or 'finds -e -g -f bal input.cpp' or 'finds -egf bal input.cpp' any of them are valid. The problem is how do I know which values in the array argv are switches, should I use a for loop searching for - as value 0, or what.

    Thanks for your help in advance. Sorry about the burbling.

  2. #2
    Registered User Nutshell's Avatar
    Join Date
    Jan 2002
    Posts
    1,020
    One way is just to test for each one. Or if u want to test the input to see if it's a file then try to open the argument name using fopen() and see if it returns NULL.

  3. #3
    Registered User
    Join Date
    Apr 2002
    Posts
    3
    Hmmm, but argv[0] is the program name, and 'bal' is what it is searching for inside the file input.cpp. I just want to be able to get the - switches. Thanks anyway.

  4. #4
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    argc is an integer telling you how many arguments you have. Just use that to set up a loop, than go through the *argv array and incrment each one until you get to a '/0'. Read each of those characters of the string into a new one your program can use just like a string, then test the first characters of each one to see if they're a switch. If they match a cetain profile, tne call the function to do what you want to do.

  5. #5
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    You do not have to test for /0 using C with argv and argc. The number in argc is the last command line argument there is.

    So if argc is 3, there are 3 command line arguments since arg[0] is the program name itself.

  6. #6
    Registered User
    Join Date
    Apr 2002
    Posts
    3
    Ok, thanks for all your help, but the problem is, there can be anywhere from 1 to 3 switches, and I need to find out whether the switches are valid, for example, -e -f -g are all valid, yet so is -ef or -efg or -eg, if they pass 'find -e bal input.cpp' it has 1 argument at slot argv[1], but 'find -e -f bal input.cpp' has 2 switches at argv[1] and argv[2], problem is also 'find -ef bal input.cpp' is also valid, with 2 switches at argv[1]. I need to validate the input before I can continue the program. How can I filter the switches, to make sure only valid switches are passed to the program.

    Hope this explains my delima a little better. Thanks for your help.

  7. #7
    Evil Member
    Join Date
    Jan 2002
    Posts
    638
    You are probably gonna wanna use a for loop controled by argc make strings out of all the arguments, and then test each string to see if is starts with a '-'. This will tell you which are switches. The program only sees letters, starting a switch with a dash is just convention, not something that is coded separatly.

  8. #8
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    First off, make a long string with all possible letters in it - for single letter switches. Then use a string function to compare the input string with your string. If one or more letters from the input string match your string, the switch is valid.

    For word switches you will have to just test them against pre-sets within a switch() {} or something.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Beginner Needs help in Dev-C++
    By Korrupt Lawz in forum C++ Programming
    Replies: 20
    Last Post: 09-28-2010, 01:17 AM
  2. GradeInfo
    By kirksson in forum C Programming
    Replies: 23
    Last Post: 07-16-2008, 03:27 PM
  3. command line arguments
    By vurentjie in forum C Programming
    Replies: 3
    Last Post: 06-22-2008, 06:46 AM
  4. Replies: 10
    Last Post: 09-27-2005, 12:49 PM
  5. NULL arguments in a shell program
    By gregulator in forum C Programming
    Replies: 4
    Last Post: 04-15-2004, 10:48 AM