Categorygithub.com/danielb42/goat
repositorypackage
1.0.1
Repository: https://github.com/danielb42/goat.git
Documentation: pkg.go.dev

# README

goat

GoDoc Go Report Card License: MIT

Golang connector for at(1).

Schedule external command executions, powered by the at(1)-utility:

// let /hello/world.sh be run at <execTime>
execTime := time.Date(<in the future>)
jobID, err := at.AddJob("/hello/world.sh", execTime)

// changed your mind?
at.RemoveJob(jobID)

Prerequisites

at(1) must be present on your system. If it's not, try apt install at or yum install at or pacman -S at or apk add at according to your linux flavor.