Skip to content

Instantly share code, notes, and snippets.

@m1el
Created September 7, 2013 15:24
Show Gist options
  • Save m1el/6476540 to your computer and use it in GitHub Desktop.
Save m1el/6476540 to your computer and use it in GitHub Desktop.
python vs. perl hello world syscalls count
m1el@blackninja:~$ strace python -c 'print "hello world"' 2>&1 | wc -l
784
m1el@blackninja:~$ strace perl -e 'print "hello world"' 2>&1 | wc -l
169
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment