Skip to content

Commit

Permalink
Adding initial inspection tool bin/why.
Browse files Browse the repository at this point in the history
Issue 1392:

Resolves #1392.
  • Loading branch information
wwlwpd committed Sep 16, 2024
1 parent 5dbb223 commit eb1e545
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bin/why
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

cd $RUNDIR

for failed in $(ls -rt1 | grep failed); do
echo $failed
pushd $failed > /dev/null
for file in $(ls -rt1 *.slurm); do
printf " %s\n" $file
done
popd > /dev/null
done

0 comments on commit eb1e545

Please sign in to comment.