#!/bin/bash
# This is the winver-xp script that links to the Python script /usr/bin/winver-xp.py

# Ensure Python 3 is available
if ! command -v python3 &>/dev/null; then
    echo "Python 3 is not installed. Please install Python 3."
    exit 1
fi

# Ensure /usr/bin/winver-xp.py exists and is executable
SCRIPT_PATH="/usr/bin/winver-xp.py"

if [ ! -f "$SCRIPT_PATH" ]; then
    echo "winver-xp.py not found at $SCRIPT_PATH"
    exit 1
fi

# Run the Python script using Python 3
python3 "$SCRIPT_PATH"
