forked from hasslesstech/edu-dis-labs
6 lines
106 B
Bash
6 lines
106 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
grep -E '\|\ [0-9]{3}\.[0-9]{3}' use-cases/*.uc \
|
||
|
| cut -d '|' -f 2 \
|
||
|
| sort | uniq -c
|