#!/data/data/com.termux/files/usr/bin/bash # In Termux: bash scripts/termux_shell_hinweis.sh # Bei "syntax error": sed -i 's/\r$//' scripts/termux_shell_hinweis.sh set -e echo "" echo "=== Du bist in Termux (Bash auf Android) ===" echo "" echo "HIER funktioniert NICHT:" echo " - Set-Location, powershell, *.ps1" echo " - Pfade wie C:\\Users\\... (das ist Windows)" echo " - note10_start_from_laptop.py (nur auf dem LAPTOP)" echo "" echo "Zuerst vom Laptop deployen, DANN auf dem Phone z.B.:" echo " python3 ~/ORION-ROS2-Consciousness-Node/ddgk_note10_agent.py" echo "" echo "Nur auf dem LAPTOP (PowerShell, Prompt PS C:\\...):" echo " cd " echo " python note10_start_from_laptop.py" echo " oder: .\\note10_run.bat" echo "" if [ -f "$HOME/ORION-ROS2-Consciousness-Node/ddgk_note10_agent.py" ]; then echo "[OK] Agent-Datei gefunden. Start:" echo " python3 $HOME/ORION-ROS2-Consciousness-Node/ddgk_note10_agent.py" else echo "[Hinweis] Agent noch nicht unter ~/ORION-ROS2-Consciousness-Node/" echo " Vom Laptop: python note10_start_from_laptop.py (mit NOTE10_SSH_PASSWORD)" fi echo ""