@Ocalabob
I've only found one other forum in where pinto15 has posted the same question, and the answer is nearly Samir's first sentence.
The other forum with the command line is a forum in that this command line is a result, so it should work as is:
http://www.geopsy.org/forum/viewtopic.php?t=115@pinto15
I assume mingw is installed on your system with some tools from geopsy and others. You should run these commands from the mingw shell and not from cmd shell. I assume another gprofile program is installed, and you are using the false one. Running from mingw shell should prevent such situations, if mingw and the programs for it are installed properly.
If it is not as i assumed, you may store all intermediate result using the redirection operator (>) at any point:
Code: Select all
gpdcreport my_run.report -gm -m 1 > gpdcreportResult.txt
gpdcreport my_run.report -gm -m 1 | gprofile -vs -resample -d 50 -n 50 > gpdcreportResult.txt
gpdcreport my_run.report -gm -m 1 | gprofile -vs -resample -d 50 -n 50 | grep -v "#" > grepResult.txt
gpdcreport my_run.report -gm -m 1 | gprofile -vs -resample -d 50 -n 50 | grep -v "#" | awk '{print $2,$1}' > awkResult.txt
I think you should know how the intermediate results should look like.
penpen