mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-02 20:12:36 +00:00
6 lines
230 B
Bash
Executable File
6 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -s https://api.github.com/repos/restic/restic/releases/latest \
|
|
| grep "https://api.github.com/repos/restic/restic/tarball/" \
|
|
| sed -E 's/.*v([0-9]+\.[0-9]+\.[0-9]+).*/\1/' # extract just the version number
|