waituntil is a simple command-line tool that waits until the time you specify. Useful for scheduling one-time tasks.
Go to file
Jonas Tobias Hopusch 629fd2a516
Merge branch 'codeowner' into master
Apply codeowner rules after having tested them on github.com

Reviewed-by: Jonas Tobias Hopusch <git@jotoho.de>
2022-07-23 17:28:26 +02:00
.github Mark myself as fallback codeowner for entire repository 2022-07-23 17:27:06 +02:00
.idea/codeStyles Set some formatting settings for features not yet used 2022-03-12 15:54:22 +01:00
gradle/wrapper Upgrade gradle version in properties file to gradle 7.4 2022-02-11 05:20:54 +01:00
src/main/java/de/jotoho/waituntil Some tweaks to the formatting settings 2022-03-12 15:40:06 +01:00
.gitattributes Initialize Gradle project without wrapper and add basic main 2021-09-07 01:21:20 +02:00
.gitignore Introduce and apply IntelliJ IDEA code style settings 2022-03-12 15:24:57 +01:00
AUTHORS.md Add instructions on supplying contributor information 2022-01-28 01:04:50 +01:00
LICENSE.md Switch AGPL file for it's markdown counterpart 2021-09-07 01:21:20 +02:00
README.md Update copyright year in README.md 2022-01-28 00:28:16 +01:00
build.gradle.kts Some tweaks to the formatting settings 2022-03-12 15:40:06 +01:00
gradle.properties Port waituntil from Kotlin to Java 2021-12-01 14:36:07 +01:00
settings.gradle.kts Determine application version by calling git describe 2022-01-02 18:33:17 +01:00

README.md

waituntil

A basic tool for delaying work in the terminal to a specific time. This software was originally written in Kotlin and then recently ported to Java.

Usage:

java -jar ./waituntil.jar 10:30 ; reboot # Replace reboot with your command

The example above would make the program wait until half past ten AM before exiting and allowing the next command to run. The timestamp can be passed in the formats HH:MM or HH:MM:SS and must be in the 24-hour system. Passing dates is not supported but entering a time that has already passed will make the software wait until that time on the following day.

Contributing / Submitting Feedback

The canonical home of this project is on my personal Gitea-instance but since it has registration turned off, collaborating there is difficult.

If you have not been given an account on gitea.jotoho.de then you can alternatively send me feedback, bug reports or patches via email to contact@jotoho.de. Should that fail, there may be alternative ways to contact me listed on my personal website.

In the future, I may also decide to create a mirror for this project on GitHub, gitlab.com or similar.

waituntil - a tool for delaying command execution until the specified time
Copyright (C) 2022 Jonas Tobias Hopusch

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.