This is an example simple command to move all of the pl.dat files into a single directory from a set of runs.
for dir in Run*; do cp $dir/OUT/dump_pl.dat ../belt/100km-$dir-pl.dat; done
This how to loop through the files to input them into belt_statistics
for run in *pl.dat; do echo $run > temp; ./belt_statistics < temp; don