All public logs
Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:52, 29 September 2025 Mwroot talk contribs created page 完美日用小命令 (Created page with "{| class = "wikitable" ! 目标或作用 ! 对应方法 |- | emacs 中插入两个全角空格 | <syntaxhighlight lang="bash"> insert-char 3000 #或者 (global-set-key (kbd "C-c s") (lambda () (interactive) (insert-char #x3000 2))) </syntaxhighlight> |- | 解决 ssh 断联问题 | <syntaxhighlight lang="bash"> # 本地 ~/.ssh/config Host * ServerAliveInterval 60 ServerAliveCountMax 3 # 远程 /etc/ssh/sshd_config ClientAliveInterval 60 ClientAliveCountMax 3 <...")