Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mfarrugi on github.
  • I am thinking (https://keybase.io/thinking) on keybase.
  • I have a public key ASAIGSI1ci4-W5VF0l2C0j01QUdu3pl7sfctR8Qh5BS4awo

To claim this, I am signing this object:

@mfarrugi
mfarrugi / benchmark-sort.py
Last active October 22, 2018 12:26
Benchmark shell scripts!
#/usr/bin/python
import sys
import re
lines = sys.argv[1]
ms_thresh = int(sys.argv[2])
lines = lines.split("\n")
lines = map(str.strip, lines)