问题
Is there any way to check the progress of simulations in headless mode as opposed to gui? Basic Code:
$ ~/netlogo-5.1.0/netlogo-headless.sh \
--model ~/myproject/MyModel.nlogo \
--experiment MyExperiment \
--table ~/myproject/MyNewOutputData.csv
回答1:
I'd suggest doing tail -f ~/myproject/MyNewOutputData.csv
. This will show you a live view of the output file as it is being written to.
来源:https://stackoverflow.com/questions/28457997/progress-of-simulations-in-headless-mode