Skip to content

Commit 0796de1

Browse files
authored
Remove UUOC from README.markdown
1 parent f5e933f commit 0796de1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This is useful for finding the 95% response time from access logs.
6161

6262
Example (assuming response time is the last column in your access log):
6363

64-
$ cat access.log | awk '{print $NF}' | ninety_five_percent.py
64+
$ awk '{print $NF}' /path/to/access.log | ninety_five_percent.py
6565

6666
sample.py
6767
---------
@@ -93,6 +93,6 @@ Generate an ascii bar chart for input data (this is like a visualization of `uni
9393

9494
`bar_chart.py` and `histogram.py` also support ingesting pre-aggregated values. Simply provide a two column input of `count<whitespace>value` for `-a` or `value<whitespace>count` for `-A`:
9595

96-
$ cat data | uniq -c | bar_chart.py -a
96+
$ sort /path/to/data | uniq -c | bar_chart.py -a
9797

9898
This is very convenient if you pull data out, say Hadoop or MySQL already aggregated.

0 commit comments

Comments
 (0)