- Patch
/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/vim.rb
- Build
brew reinstall --verbose --debug --build-from-source vim
- Locate your dynamic library with
find /Users/bronoric/.pyenv/ -name '*libpython3*.dylib'
- It's probably going to contain
darwin
in the path.
- It's probably going to contain
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
#!/bin/bash | |
# stdin should be integers, one per line. | |
# command line perncentiles e.g. 75 90 95 | |
percentiles=$* | |
tmp="$(mktemp -t percentileXXXX)" | |
total=$(sort -n | tee "$tmp" | wc -l) | |
for percentile in $percentiles |