- 🔭 I’m currently working on ------NONE
Visit F-droid and Download TERMUX
yes | pkg up
pkg install git -y
clear
git clone https://github.com/ssh-003/termux.git
cd termux
bash setup.sh
clear
bash run.sh
PHP is installed Python3 is installed Ruby is installed Node.js is installed Shell is installed Java is installed Perl is installed C is installed C++ is installed Html is installade Css is installed javaScript is installed //-------------------–-------–--------------------------/ (Copy https://localhost:8000 and Goto web browser) PHP 8.3.8 Development Server (https://localhost:8000) started# Another Chack [--Copy Code And Past to TERMUX--]
check_command() {
if command -v $1 &> /dev/null
then
echo "$1 is installed"
else
echo "$1 is not installed"
fi
}
echo "Checking PHP..."
check_command php
echo "Checking Python..."
check_command python3
echo "Checking Ruby..."
check_command ruby
echo "Checking Node.js..."
check_command node
echo "Checking Shell..."
echo "Shell is installed"
echo "Checking Java..."
check_command javac
echo "Checking Perl..."
check_command perl
echo "Checking C compiler (gcc)..."
check_command gcc
echo "Checking C++ compiler (g++)..."
check_command g++
echo "Checking HTML, CSS, JavaScript (using simple HTTP server)..."
echo '<!DOCTYPE html><html><head><title>Test</title></head><body><h1>HTML is working</h1><style>body { background-color: lightblue; }</style><script>console.log("JavaScript is working");</script></body></html>' > index.html
python3 -m http.server &
SERVER_PID=$!
sleep 5
xdg-open https://localhost:8000
sleep 60
kill $SERVER_PID
rm index.html