Revision 960
Added by Aaron Marcuse-Kubitza almost 13 years ago
error_stats | ||
---|---|---|
1 |
#!/bin/bash
|
|
2 |
# Displays statistics about the error messages in `map` output
|
|
1 |
#!/bin/sh |
|
2 |
# Displays statistics about `map` error messages
|
|
3 | 3 |
# Usage: self {input...|<input} |
4 | 4 |
|
5 | 5 |
alias grep='grep --color=never' |
6 | 6 |
|
7 |
grep -F '[101;97m' "$@"|sort|uniq --count |
|
7 |
grep -F '[101;97m' "$@"|sort|uniq -c |
Also available in: Unified diff
error_stats: Fixed to work on Mac