Skip to content

Instantly share code, notes, and snippets.

@qerub
Last active November 21, 2021 20:02
Show Gist options
  • Save qerub/cc080d9c2c329c0bf5068ca4688a1fc8 to your computer and use it in GitHub Desktop.
Save qerub/cc080d9c2c329c0bf5068ca4688a1fc8 to your computer and use it in GitHub Desktop.
Useful macOS commands

How to list non-Apple kernel extensions

kextstat | egrep -v '\bcom.apple.'

How to restart the computer without having to manually unlock FileVault

sudo fdesetup authrestart

How to flush the OS DNS cache

sudo dscacheutil -flushcache

How to list sleep/wake events

pmset -g log | egrep '\b(Sleep|Wake|Start)\s{2,}'

How to put the display to sleep

sudo pmset displaysleepnow

How to put the computer to sleep

osascript << END
  tell application "System Events"
    sleep
  end
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment