使用linux系统,难免需要用到shell,难免需要用终端,终端也有各种玩法。
linux终端还有termux也一样。
1、motd欢迎语,发生在shell登录之前,打开终端就可以看到欢迎语了。
vim /etc/motd
可以将一些有意思的字符集设置成欢迎语。
https://motd.bakaya.ro/
http://www.asciiworld.com/
2、终端美化,一般可以用oh-my-zsh
https://zsxwz.com/2020/01/04/deepin%e7%b3%bb%e7%bb%9f%e4%b8%aa%e4%ba%ba%e4%bc%98%e5%8c%96%e9%80%89%e9%a1%b9/
3、打开终端自动运行脚本,和开机自启不一样:https://bbs.zsxwz.com/thread-2255.htm
每一次打开终端就自动执行脚本。
如果用的是bash,自动执行脚本就是.bashrc。
如果是zsh,自动执行脚本就是.zshrc。
4、让终端走代理:
直接在.bashrc或者.zshrc添加下面内容
export http_proxy="http://localhost:port" export https_proxy="http://localhost:port" # http代理 export http_proxy="socks5://127.0.0.1:1080" export https_proxy="socks5://127.0.0.1:1080" # socks5代理
5、查看历史shell输入命令,history。
history 10 # 查看近10条 history | grep apt # 按条件搜索历史命令 history -c # 清空历史