From 8089844e2d076a87de705411ac5435fd4c1069a1 Mon Sep 17 00:00:00 2001 From: Yujin Boby Date: Thu, 18 Sep 2025 11:59:00 +0530 Subject: [PATCH] added debian 13 support --- sok-find-os.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sok-find-os.sh b/sok-find-os.sh index f8f49c4..142a812 100755 --- a/sok-find-os.sh +++ b/sok-find-os.sh @@ -32,6 +32,8 @@ elif cat /etc/os-release | grep PRETTY_NAME | grep "bullseye" > /dev/null; then echo "debian11" elif cat /etc/os-release | grep PRETTY_NAME | grep "bookworm" > /dev/null; then echo "debian12" +elif cat /etc/os-release | grep PRETTY_NAME | grep "trixie" > /dev/null; then + echo "debian13" elif cat /etc/os-release | grep PRETTY_NAME | grep "CentOS Linux 7" > /dev/null; then echo "centos7" elif cat /etc/os-release | grep PRETTY_NAME | grep "CentOS Linux 8" > /dev/null; then