AllSpice-Install/install-scripts/install-nilesoft-shell.sh

12 lines
274 B
Bash

#!/bin/bash
# Check if nilesoft-shell is installed
if command -v nilesoft-shell &> /dev/null
then
echo "nilesoft-shell is already installed."
else
echo "nilesoft-shell not found, installing..."
scoop bucket add extras
scoop install extras/nilesoft-shell
fi