Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save christian-korneck/5066818cf42671e66c3983fec39d9ff8 to your computer and use it in GitHub Desktop.
Save christian-korneck/5066818cf42671e66c3983fec39d9ff8 to your computer and use it in GitHub Desktop.
darwin sleep infinity
```
sleep() {
if [[ $@ == "infinity" ]]; then
while true
do
/bin/sleep 1
done
else
/bin/sleep "$@"
fi
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment