Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Command Line in Unix

Status
Not open for further replies.

ToddT

Programmer
Feb 7, 2003
14
US
Can anyone tell me how to pass a certain range of command line arguments in the csh
 
Pass to what? Your program? If so, shell doesn't matter.

Code:
int main( int argc, char** argv )
{
    // argc = number of args
    // argv = array of args as strings
}

If that answer is unsatisfactory, rephrase your question, please.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top