API - https://kanye4sue021.heliohost.us
Prefix parameter - ?x=mahar
Join the following parameter as required.
| # ~/.zshrc file for zsh interactive shells. | |
| # see /usr/share/doc/zsh/examples/zshrc for examples | |
| setopt autocd # change directory just by typing its name | |
| #setopt correct # auto correct mistakes | |
| setopt interactivecomments # allow comments in interactive mode | |
| setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’ | |
| setopt nonomatch # hide error message if there is no match for the pattern | |
| setopt notify # report the status of background jobs immediately | |
| setopt numericglobsort # sort filenames numerically when it makes sense |
| #!/bin/bash | |
| # Uninstalled the Distro default version | |
| apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc | cut -f1) 2&> /dev/null | |
| if [ $(echo $?) != 0 ];then | |
| echo "Run the script as root user or with sudo." | |
| exit 1 | |
| fi |
| @ECHO OFF | |
| title Windows Activation Script | |
| setlocal EnableDelayedEXpansion | |
| ::echo Note: To eXecute this script with Run As Administrator | |
| net session >nul 2>&1 | |
| if %errorlevel% == 0 ( | |
| ::echo Success: Administrative permissions confirmed. | |
| call :Main |