Skip to content
Snippets Groups Projects
Commit 917e968a authored by an7s's avatar an7s
Browse files

run diagnostics output through sort | uniq

Former-commit-id: 56f4f5b1210d93eb41b2c1c49092a6916d6efff7
parent eef23529
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,8 @@ if [ -f $datapath/diagnostics.out ]; then
if [ $len -gt 0 ]; then
# make output more concise
uniq $datapath/diagnostics.out > tmp.$$
wc -l $datapath/diagnostics.out
sort $datapath/diagnostics.out | uniq > tmp.$$
mv tmp.$$ $datapath/diagnostics.out
#echo "--------------------------------------------------------"
......
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