Comment by adolph
8 hours ago
grep 'name = ' ms-litebox-Cargo.lock | wc -l
238
edit:
grep 'name = ' ms-litebox-Cargo.lock | sort -u | wc -l
221
8 hours ago
grep 'name = ' ms-litebox-Cargo.lock | wc -l
238
edit:
grep 'name = ' ms-litebox-Cargo.lock | sort -u | wc -l
221
I've always done 'sort | uniq'. Never bothered to check for the the unique flag to sort. Although 'uniq -c' is quite nice to have.
Yeah, to see the packages with multiple versions:
Package windows-sys has the highest number of versions included, 3: 0.59.0, 0.60.2, and 0.61.2.
Edit: Also, beware of the unsorted uniq count:
grep -v '1 name' excludes 11, 21, etc., but I take your point.