#!/bin/sh # AI Anywhere — installer placeholder. # # This URL is the one the site advertises: # curl -fsSL https://tmux.online/install.sh | sh # # The real script is not published here yet. Until it is, this one refuses to touch your # machine and tells you where to look instead. Replace this file wholesale when the # installer is ready — nothing else on the site needs to change. set -eu blue='\033[36m' bold='\033[1m' off='\033[0m' printf '%b\n' "${blue}[AA]${off} AI Anywhere — installer not published yet." printf '\n' printf '%b\n' " Nothing has been installed and nothing on this machine was changed." printf '\n' printf '%b\n' " Meanwhile you can run the server directly, if you have Node.js 22.5+ and tmux:" printf '%b\n' " ${bold}npx ai-anywhere-server${off}" printf '\n' printf '%b\n' " Source and issues:" printf '%b\n' " ${bold}https://github.com/ha0z1/New-Bing-Anywhere${off}" printf '\n' exit 1