All posts by Nix.Huang

liquibase ChangeLogParseException

9月 16, 2021 |

希望通过如下命令执行升级xxx.war中migration/changelogs.xml脚本 java liq […more]

使用netcat启动http server

8月 11, 2021 |

while true; do ( echo -e ‘HTTP/1.1 200 OK\r\nContent-Ty […more]

log4j2的位置参数’%L’ ‘%M’ ‘%l’不生效

7月 19, 2021 |

log4j2使用通过异步logger来提高吞吐量,如果通过 -DLog4jContextSelector=or […more]

git merge删除被当前分支删除的文件

6月 29, 2021 |

git merge删除被当前分支删除的文件 for x in `git status -sb|grep DU […more]

feign client 产生没有CONTENT-LENGTH请求头的报文导致服务器返回httpStatus=411错误

3月 15, 2021 |

原来项目的服务端和客户端都是使用tomcat服务器, 这次服务器使用的是C#服务器,发现它对如下请求返回的是4 […more]

window10开启pptp服务[亲测可用]

8月 1, 2020 |

有时我们出差在现场, 发现问题后需要公司的同事远程支持, 这时我们可以开远程桌面让其远程支持,也可以开启ppt […more]

linux shell sed hold space 和lable功能

6月 18, 2020 |

sed 命令的格式为 sed ‘[address]operation1′ — sed lable 实现’:’ […more]

grep 命令的基本模式和扩展模式

6月 16, 2020 |

基本模式下”?, +, {, |, (, 和 ) “按普通字符处理,如果要使用正则表达式语言,请使用反斜杠转义 […more]

linux find -mtime 参数的使用

6月 9, 2020 |

-mtime 的计算逻辑为[(当前时间-文件的修改时间)/24] 向下取整,即丢弃小数部分 所以-mtime […more]

bash shell for复合语句

6月 9, 2020 |

for x in $(ls ); do echo “$x”; done; //Command Substitu […more]