在 home 目录的 .inputrc
文件添加键位绑定,然后重启 terminal session 即可
# Key bindings, up/down arrow searches through history
"\e[A": history-search-backward
"\e[B": history-search-forward
"\eOA": history-search-backward
"\eOB": history-search-forward
1. 安装 ```autojump``` 包,在 unbuntu 上执行 ```sudo apt install autojump```,其他发行版使用对应的包管理器安装即可。
2. 在 ```.bashrc``` 或 ```.zshrc``` 加载脚本
```shell
# autojump
. /usr/share/autojump/autojump.sh
自定义 *.service 文件放在 /usr/lib/systemd/system
下面
[Unit]
Description=xxx service
After=network.target
[Service]
Type=simple
User=nobody
Restart=always
StartLimitIntervalSec=10
StartLimitBurst=10
RestartSec=1s
ExecStart= /path/bin --debug
[Install]
WantedBy=multi-user.target
ss -lntu | grep 8080ss