多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> # GoFrame 文档 - 1.16框架文档: https://goframe.org/pages/viewpage.action?pageId=17203716 - [ORM链式操作-时间维护](https://goframe.org/pages/viewpage.action?pageId=1114139) - 当数据表包含`created_at`、`updated_at`、`deleted_at`任意一个或多个字段时,该特性自动启用 - 指定配置文件:https://goframe.org/pages/viewpage.action?pageId=17203580 ``` # 查找对应端口的进程并杀死 PORT=7019 PID=$(netstat -tlanp | grep ":$PORT " | awk '{print $7}' | awk -F'/' '{print $1}') if [ -n "$PID" ]; then echo "找到端口 $PORT 对应的进程 PID 为 $PID" kill -9 "$PID" echo "已成功杀死进程 $PID" else echo "未找到端口 $PORT 对应的进程" fi sleep 3 mv -f dxzg_dtc dxzg_dtc_test chmod 777 dxzg_dtc_test sleep 3 nohup ./dxzg_dtc_test --gf.gcfg.file=config_dev_dxzg.toml > nohup.out & ```