Skip to content

Commit

Permalink
remove bashism
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 committed Aug 1, 2024
1 parent 2428a8a commit 10d18a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/checksums
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ $topDir/multi_test DB_HDF5 1>/dev/null 2>&1
#
offset=0
skip=0
while [[ $offset -eq 0 && $skip -lt 9 ]]; do
while [ $offset -eq 0 && $skip -lt 9 ]; do
offset=`od -j $skip -A d4 -t d4 h5_check_files/multi_ucd3d.h5 | tr '\t' ' ' | tr -s ' ' | grep '167 179 323 311' | cut -d' ' -f1`
offset=`echo $offset | cut -d' ' -f1 | sed 's/^0*//'`
skip=$(expr $skip + 1)
Expand Down

0 comments on commit 10d18a7

Please sign in to comment.