$ nc 13.234.130.76 7002 bash: cannot set terminal process group (1): Not a tty bash: no job control in this shell bash-4.4$ ls ls bash: LS: command not found bash-4.4$ pwd pwd bash: PWD: command not found
一瞬、CAPSLOCK がバグったのかと思ったけど、そうではなくこれが問題だった。
入力した文字が全て大文字として解釈されるため、コマンドが何も実行できないという感じ。
ちょっと調べたら ${v,,} で小文字にできることがわかったので、あとは簡単だった。
bash-4.4$ l="ls /" bash-4.4$ ${l,,} ${l,,} bin etc jail media opt root sbin sys usr dev home lib mnt proc run srv tmp var
bash-4.4$ l="bash"; ${l,,} l="bash"; ${l,,} bash: cannot set terminal process group (1): Not a tty bash: no job control in this shell bash: /root/.bashrc: Permission denied