MacOS
Sudo w/ Touch ID
Add the following to /etc/pam.d/sudo
Problems with Sed
If you're getting problems using sed -i
that is because macOS/OSX version of sed
expects an argument after -i
, the suffix to use for the backup files. This is not the same with GNU sed
.
So to work around this do -i ""
or -i .bak
.
Tips
Show hidden files - Command + Shift + . (period)