This file contains 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
gg_replace() { | |
if [[ "$#" -lt "2" ]]; then | |
echo " | |
Usage: | |
$0 term replacement file_mask | |
Example: | |
$0 cappuchino cappuccino '*.html' | |
"; | |
else |
This file contains 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
# When you get an error like | |
# ('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed') | |
# when using twisted, autobahn, etc... | |
# on macos | |
# than you may have to install trust roots | |
# Do this by using brew: | |
# (install brew) | |
brew update | |
brew install [email protected] # this must match the current version that the macOS cryptography wheel is built against |