snippetbashTip
caffeinate — Prevent macOS from sleeping. More information: <https://keith.github.io/xcode-man-pages/caffeinate.8
Viewed 0 times
sleepingcommandpreventfromclicaffeinatemoremacos
macos
Problem
How to use the
caffeinate command: Prevent macOS from sleeping. More information: <https://keith.github.io/xcode-man-pages/caffeinate.8.html>.Solution
caffeinate — Prevent macOS from sleeping. More information: <https://keith.github.io/xcode-man-pages/caffeinate.8.html>.Prevent the display from sleeping:
caffeinate -dPrevent from sleeping for 1 hour (3600 seconds):
caffeinate -u -t {{3600}}Fork a process, exec "make" in it, and prevent sleep as long as that process is running:
caffeinate -i makePrevent from sleeping until a process with the specified PID completes:
caffeinate -w {{pid}}Prevent disk from sleeping (use
<Ctrl c> to exit):caffeinate -mCode Snippets
Prevent the display from sleeping
caffeinate -dPrevent from sleeping for 1 hour (3600 seconds)
caffeinate -u -t {{3600}}Fork a process, exec "make" in it, and prevent sleep as long as that process is running
caffeinate -i makePrevent from sleeping until a process with the specified PID completes
caffeinate -w {{pid}}Prevent disk from sleeping (use `<Ctrl c>` to exit)
caffeinate -mContext
tldr-pages: osx/caffeinate
Revisions (0)
No revisions yet.