mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-11 01:10:31 +00:00
11 lines
215 B
Plaintext
11 lines
215 B
Plaintext
# caffeinate
|
|
# Prevent a system from sleeping (Mac OS X)
|
|
|
|
# Prevent mac from sleeping for 1 hour (3600 seconds):
|
|
caffeinate -u -t 3600
|
|
|
|
# Prevent mac from sleeping until a command completes:
|
|
caffeinate -s command
|
|
|
|
|