1
0
Fork 0

Julian Foad:

- Put a space between arguments and redirection operator: looks nicer
  and may be necessary in some circumstances.
- Add missing option "--min-angle" to help text.
This commit is contained in:
curt 2002-11-11 15:19:34 +00:00
parent ec83d7a39b
commit 5bb24ff286

View file

@ -200,7 +200,7 @@ bool construct_tile( const SGBucket& b,
for (int i = 0; i < (int)load_dirs.size(); i++) {
command = command + " " + load_dirs[i];
}
command = command + "> " + result_file + " 2>&1";
command = command + " > " + result_file + " 2>&1";
cout << command << endl;
system( command.c_str() );
@ -253,7 +253,8 @@ usage (const string name)
cout << " --host=<address>" << endl;
cout << " --port=<number>" << endl;
cout << " --rude" << endl;
cout << " --cover=<landcover-raster> ]" << endl;
cout << " --cover=<landcover-raster>" << endl;
cout << " --min-angle=<degrees> ]" << endl;
cout << "<load directory...>" << endl;
exit(-1);
}