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 | |
# only need bash for md5 | |
set -eu | |
eval "curl(){ '$(which curl)' \"\$@\"; }" # only curl needed for md5 source; | |
# TODO/CONSIDER: https://stackoverflow.com/q/7765004 "TCP connection, bash only". also needs to resolve domain. | |
PATH='' # enshure we are pure shell |