Initial commit

This commit is contained in:
2025-08-02 18:42:54 +03:00
commit ae957eb3de
4 changed files with 63 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
URL="https://www.7-zip.org/history.txt"
# Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -B1 '\-------------------------' | head -n1 | grep -o -E '(([0-9]*)\.([0-9]*))')
echo "$VERSION"