Skip to content
Snippets Groups Projects
Verified Commit 5221b97a authored by Renato Alves's avatar Renato Alves :seedling:
Browse files

MNT Use custom options when listing all jobs in the cluster

parent 04c9bba9
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ if [ -f "$(which squeue 2>/dev/null)" ]; then
if [ "$#" == "0" ]; then
squeue -u $(whoami) -o "%.18A %.9P %.25j %.2t %.7c %.5D %.7d %.11M %.15R"
else
squeue "$@"
squeue -o "%.18A %.9P %.25j %.2t %.10u %.10g %.7c %.5D %.7d %.11M %.15R" "$@"
fi
elif [ -f "$(which bjobs 2>/dev/null)" ]; then
bjobs "$@"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment