0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

TeraTerm + Oracle Linux 9 もしくは Alma Linux 9 でコピペが便利になる不思議な呪文

Posted at

みなさん Oracle Linux 9 または Alma Linux 9 になってから TeraTerm でコピペがすんなりできなくなりませんでしたか?
それを解消するコマンドを作成しましたのでよろしけばご使用ください。

inputrc.sh
sudo ls -alF /etc/inputrc
sudo cat /etc/inputrc
sudo cp -an /etc/inputrc{,.$(date +%Y%m%d)}
sudo ls -alF /etc/inputrc*
sudo sh -c "echo \"# $(date +%Y.%m.%d) ${SUDO_USER:-$(whoami)}\" >> /etc/inputrc"
sudo sh -c "echo \"#\" >> /etc/inputrc"
sudo sh -c "echo \"set enable-bracketed-paste off\" >> /etc/inputrc"
sudo diff /etc/inputrc{,.$(date +%Y%m%d)}
bind -f /etc/inputrc

どうぞよろしくお願いします。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?