Last active
May 9, 2022 00:27
-
-
Save cgarciae/abff0b720e142e1015ed3e3789996c21 to your computer and use it in GitHub Desktop.
timed.sh
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
| # timed.sh | |
| ulimit -n 3000 # increase to avoid "out of file descriptors" error | |
| python server.py & | |
| sleep 1 # Wait for server to start | |
| /usr/bin/time --format "Memory usage: %MKB\tTime: %e seconds\tCPU usage: %P" "$@" | |
| kill %1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment