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 3566b52698
Merge branch 'modularize' into master
This branch introduces some configuration that enables Java 9 modules in this project,
adds a GPL copyright disclaimer to the output of --version flag
and makes changes to gradle that make the application version dynamically assigned using git
information and the "git describe" command.

Closes #16
2022-01-02 18:34:23 +01:00
src/main/java Determine application version by calling git describe 2022-01-02 18:33:17 +01:00
.gitattributes Initialize Gradle project without wrapper and add basic main 2021-09-07 01:21:20 +02:00
.gitignore Ignore .zst archives 2021-09-19 21:17:33 +02:00
LICENSE.md Switch AGPL file for it's markdown counterpart 2021-09-07 01:21:20 +02:00
README.md Fix README 2021-12-01 14:46:00 +01:00
build.gradle.kts Determine application version by calling git describe 2022-01-02 18:33:17 +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.

waituntil - a tool for delaying command execution until the specified time
Copyright (C) 2021 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/>.