From d81c1068e71fbb0961db1ca46e650a8228595b7f Mon Sep 17 00:00:00 2001 From: m1ngsama Date: Mon, 23 Dec 2024 09:30:00 +0800 Subject: [PATCH] Update README with CLI usage examples --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b0200df..3542a67 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,20 @@ pip install -r requirements.txt ## Usage +Basic usage: ```bash python tracker.py ``` +Continuous monitoring mode: +```bash +python tracker.py --continuous --interval 5 +``` + +Command line options: +- `-c, --continuous`: Run in continuous monitoring mode +- `-i, --interval`: Set update interval in seconds (default: 5) + ## Requirements - Python 3.8+