HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

leave — Set a reminder for when it's time to leave. To remove reminders use `kill $(pidof leave)`. More info

Submitted by: @import:tldr-pages··
0
Viewed 0 times
leavecommandsetclitimewhenreminderfor

Problem

How to use the leave command: Set a reminder for when it's time to leave. To remove reminders use kill $(pidof leave). More information: <https://man.freebsd.org/cgi/man.cgi?leave>.

Solution

leave — Set a reminder for when it's time to leave. To remove reminders use kill $(pidof leave). More information: <https://man.freebsd.org/cgi/man.cgi?leave>.

Set a reminder at a given time:
leave {{time_to_leave}}


Set a reminder to leave at noon:
leave {{1200}}


Set a reminder in a specific amount of time:
leave +{{amount_of_time}}


Set a reminder to leave in 4 hours and 4 minutes:
leave +{{0404}}

Code Snippets

Set a reminder at a given time

leave {{time_to_leave}}

Set a reminder to leave at noon

leave {{1200}}

Set a reminder in a specific amount of time

leave +{{amount_of_time}}

Set a reminder to leave in 4 hours and 4 minutes

leave +{{0404}}

Context

tldr-pages: common/leave

Revisions (0)

No revisions yet.