groups

name language licence
Struts in tables Latex Other
Tabs to spaces Other Other
Untitled Snippet
Write data to a file Perl Other
Make a file containing a list of files in a directory Perl Other
Command line arguments C++ Other
Read data from a file C++ Other
History Shell Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 >



language: C++
licence: Other

Command line arguments

options: view full snippetsend to code collector

	if ( argc != 3 ) {
  		cout << "usage: process.exe <data_file> <run_list>" << endl;
  		return 1;	
	}

	TString data_file = argv[1];
	TString run_list = argv[2];	

	
(Continues...)