打赏
摘要: shell读取config.ini文件 该脚本需要三个参数,第一个为文件名,第二个为章节名称,第三个为字段名称 #!/bin/bash iniFile=$1 section=$2 option=$3 function readInIfile() { iniFile=$1 section=$2 opt 阅读全文
posted @ 2021-08-18 15:29 苍山落暮 阅读(801) 评论(0) 推荐(0)
摘要: golang FastHttp 使用 1. 路由处理 package main import ( "fmt" "github.com/buaazp/fasthttprouter" "github.com/valyala/fasthttp" "log" ) func main() { // 创建路由 阅读全文
posted @ 2021-08-18 09:29 苍山落暮 阅读(2612) 评论(0) 推荐(0)