aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/dmenu-performancetest-bench.sh
diff options
context:
space:
mode:
Diffstat (limited to 'misc/dmenu-performancetest-bench.sh')
-rwxr-xr-xmisc/dmenu-performancetest-bench.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/misc/dmenu-performancetest-bench.sh b/misc/dmenu-performancetest-bench.sh
new file mode 100755
index 0000000..c06df46
--- /dev/null
+++ b/misc/dmenu-performancetest-bench.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+echo "Run this test more then once. the first read on the file may be uncached. after that, the file is in Linux' block cache"
+
+echo "Plain awk '{print \$3}':"
+time awk '{print $3}' dummy_history_file >/dev/null
+
+echo "awk + sort"
+time awk '{print $3}' dummy_history_file | sort >/dev/null
+echo "awk + sort + uniq"
+time awk '{print $3}' dummy_history_file | sort | uniq >/dev/null
+
+echo "Plain dmenu:"
+dmenu < dummy_history_file
+echo "awked into dmenu:"
+awk '{print $3}' dummy_history_file | dmenu
+echo "awk + sort + uniq into dmenu:"
+awk '{print $3}' dummy_history_file | sort | uniq | dmenu