Created
September 7, 2013 15:24
-
-
Save m1el/6476540 to your computer and use it in GitHub Desktop.
python vs. perl hello world syscalls count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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