1
0
Fork 0

Draft summary report scriptlet

main
Jeff Moe 2023-06-21 19:39:26 -06:00
parent bb8b73de98
commit 5c2df41b10
2 changed files with 12 additions and 1 deletions

View File

@ -6,4 +6,4 @@
./spacecruft-ls-ids
./spacecruft-classfd-ls-ids
./spacecruft-classfd-missing-ids
./spacecruft-classfd-report

View File

@ -0,0 +1,11 @@
#!/bin/bash
echo -n "Number of satellites in Spacecruft: "
wc -l data/spacecruft-ids.txt | cut -f 1 -d " "
echo -n "Number of satellites in classfd: "
wc -l data/classfd-ids.txt | cut -f 1 -d " "
echo -n "Number of satellites in Spacecruft and classfd: "
wc -l data/spacecruft-classfd-ids.txt | cut -f 1 -d " "
echo -n "Number of satellites in classfd not in Spacecruft: "
wc -l data/spacecruft-classfd-missing-ids.txt | cut -f 1 -d " "