[slurm-dev] Re: query only submission times

2015-03-17 Thread Andy Riebs
Hi Scott, The quick dirty way would be to take your current command, sort on the submit date, then remove the items that you don't want. For example, $ sacct -X -S ... | sort -k3 sorted_by_submit.log $ # now edit the log file A better long term/reusable solution would be to use a

[slurm-dev] Re: query only submission times

2015-03-17 Thread Moe Jette
You may also find the sdiag command helpful. Quoting Andy Riebs andy.ri...@hp.com: Hi Scott, The quick dirty way would be to take your current command, sort on the submit date, then remove the items that you don't want. For example, $ sacct -X -S ... | sort -k3 sorted_by_submit.log $ #