Turtle-Run is a command-line task scheduler application that allows you to manage and execute scheduled tasks efficiently. The application is designed to provide an easy way to start, stop, add, list, and remove tasks.
- Task Management: Start, stop, add, list, and remove scheduled tasks.
- User-Friendly CLI: Intuitive command-line interface for task scheduling.
To install Turtle-Run, you need to have Rust installed on your system. You can install Rust from here.
Clone the repository and build the project:
git clone https://github.com/yourusername/turtle_run.git
cd turtle_run
cargo build --release
To use Turtle-Run, run the following command:
./target/release/turtle_run <command>
Replace <command>
with one of the available commands: start
, stop
, add
, list
, remove
, run
.
The following commands are available for managing tasks:
start
: Starts the task scheduler to run in the background.stop
: Stops the task scheduler.add
: Adds a new task to the scheduler.list
: Lists all scheduled tasks.remove
: Removes a specific task from the scheduler.
To start the task scheduler, use:
./target/release/turtle_run start
To add a task:
./target/release/turtle_run add --command "ls" --time "12:00"
To list all scheduled tasks:
./target/release/turtle_run list
This project is licensed under the Apache License 2.0. More licensing information can be found in the project LICENSE file.
Sonu Kumar Saw
Email: sonukumarsaw66@gmail.com
Contributions are welcome! Please open an issue or submit a pull request.