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