#!/bin/bash

# Check if VSCode is installed
if command -v code &>/dev/null; then
    echo "VSCode is installed."
else
    echo "VSCode is not installed."
fi

# Check if Bash is installed
if command -v bash &>/dev/null; then
    echo "Bash is installed."
else
    echo "Bash is not installed."
fi

# Check if Linux (WSL) is available (assuming you are running this script on WSL)
if grep -q Microsoft /proc/version; then
    echo "Linux (WSL) is available."
else
    echo "Linux (WSL) is not available."
fi

# Check if Jupyter Notebook is installed
if command -v jupyter &>/dev/null; then
    echo "Jupyter Notebook is installed."
else
    echo "Jupyter Notebook is not installed."
fi

# Check if Python is installed
if command -v python &>/dev/null; then
    echo "Python is installed."
else
    echo "Python is not installed."
fi

VSCode is installed.
Bash is installed.
Linux (WSL) is available.
Jupyter Notebook is installed.
Python is installed.