homebrew (https://brew.sh/)
Standard option: iterm2
brew install iterm2
| #!/usr/bin/env python3 | |
| import argparse | |
| import os | |
| import subprocess | |
| import sys | |
| from dataclasses import dataclass | |
| @dataclass |
| #! /usr/bin/env python3 | |
| """ | |
| Build to compare two outputs of this line on fairly identical executables | |
| nm --print-size --radix=d <executable> | grep ' .* .* ' | cut -d' ' -f 2-10 | |
| To just see the top symbols, can run e.g | |
| nm --print-size --size-sort --radix=d <executable> | |
| """ |
homebrew (https://brew.sh/)
Standard option: iterm2
brew install iterm2
| #!/usr/bin/env python3 | |
| import http | |
| import http.server | |
| import socketserver | |
| import sys | |
| def _log(s): | |
| print(s) |