顺心太阳

文章
8
资源
0
加入时间
2年10月21天

Xml文件如何封装,,如何注解

import java.io.Serializable;import com.thoughtworks.xstream.annotations.XStreamAlias;//@XStreamAlias("newstype")public class News implements Serializable{    private String id;private

linux 批量重启进程

最近写程序需要频繁重启,并且是多个不同路径下的程序,一个个kill掉重新启动挺麻烦的。而程序的命名是有规则的,遂写了个shell。ps -a | grep huang | grep -v grep | awk '{print $1}'|sudo xargs killcd huang_currency/bin/sudo ./huang_currency_d &cd ../../huang_gift_mgr/bin/sudo ./huang_gift_mgr_d &c