Oct 9, 2003 #1 ToddT Programmer Joined Feb 7, 2003 Messages 14 Location US Can anyone tell me how to pass a certain range of command line arguments in the csh
Oct 9, 2003 #2 chipperMDW Programmer Joined Mar 24, 2002 Messages 1,268 Location US 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. Upvote 0 Downvote
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.