06 2022 档案
摘要:https://www.jianshu.com/p/329138934808 在刚登录Linux时,首先启动 /etc/profile 文件,然后再启动用户目录下的 ~/.bash_profile、 ~/.bash_login或 ~/.profile文件中的其中一个,执行的顺序为:~/.bash_p
阅读全文
摘要:可参考 https://www.cnblogs.com/jiqingwu/archive/2012/06/14/vim_notes.html 批量替换 #整个文件批量替换 :%s/旧文本/新文本/g #指定范围内替换,替换21行-52行中的文本 :21,52s/旧文本/新文本/g 跳转到指定行 ng
阅读全文
摘要:来自与 - https://github.com/jpillora/go-tcp-proxy 能够将本地的某个端口 转发到远程某个端口,可应用于服务器临时开放某个端口 例服务器mysql监听于127.0.0.1:3306 proxy -l :33060 -r 127.0.0.1:3306 程序参数
阅读全文