随机文章
github仓库迁移到gitlab操作日志记录

github仓库迁移到gitlab操作日志记录

方法1 git clone --bare old.git cd old.git git push --mirror new.git 方法2 git clone --mirror old.git cd old.git git remote set-url origin new.git git push -f origin 报错解决 **![remote rejected]** ...
kodexplorer 中 第三方插件 OnlyOffice 分享文档报错解决

kodexplorer 中 第三方插件 OnlyOffice 分享文档报错解决

kodexplorer 中 第三方插件 OnlyOffice 分享文档报错解决 应用场景 插件地址:https://github.com/zhtengw/kodexplorer-plu...
Golang正则表达式语法用法

Golang正则表达式语法用法

前言 Golang正则表达式跟普通正则表达不一致= =坑的一批 (?<命名>子表达式) 换成 (?P<命名>子表达式) 1. Golang中的正则语法 1.1 用法 ------------------------------ 单一:     .        匹配任意...
Windows IP转发

Windows IP转发

netsh  interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=80 connectaddress=118.31.38.121  connectport=80 适合IP变动问题
查询linux密码数据

查询linux密码数据

查询密码文件权限 ls -l /etc/passwd /etc/shadow 查询账号密码 查询用户 cat /etc/passwd 密码数据 cat /etc/shadow 详解 字段 含义 1 用户名 2 用户的密码原来直接存储在第二字段,但是为了安全,最后专门有了 ...