Installing mysql2
gem errors on m1 Mac.
Make sure mysql
, openssl
and zstd
are installed on Mac via Homebrew.
brew install mysql openssl zstd
#cloud-config | |
package_update: true | |
manage_resolv_conf: true | |
resolv_conf: | |
nameservers: | |
- '8.8.8.8' | |
- '8.8.4.4' | |
- '1.1.1.1' |
#!/bin/sh | |
# | |
# sort a "du" listing by directory size | |
# usage: du | dusort | |
FILES= | |
TFORM=0 | |
while test $# -ge 1; do | |
case $1 in | |
-t) TFORM=1; ;; |