# gitee **Repository Path**: oscstudio/gitee ## Basic Information - **Project Name**: gitee - **Description**: Gitee 内部使用的 golang 常用工具,包含字符串处理,进程相关等 - **Primary Language**: Go - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 18 - **Forks**: 5 - **Created**: 2019-12-12 - **Last Updated**: 2025-01-10 ## Categories & Tags **Categories**: vcs **Tags**: None ## README # Gitee golang standard components 用来存放Gitee内部使用的golang小工具 包含字符串处理,服务器相关等 ## 安装 ``` go get https://gitee.com/oscstudio/gitee ``` ## 引入 ``` import "gitee.com/oscstudio/gitee" ``` ## 使用示例 ``` // "hello, world!" gitee.StrCat("hello, ", "world!") // path is exists? gitee.PathExists("/tmp/gitee") ``` ## 主要文件介绍 |序号|文件|主要用途| |:-:|:-|:-| |0|conversion.go|计量单位相关| |1|daemonize.go|守护进程相关| |2|env.go|环境变量相关| |3|exserver|平滑重启等| |4|fs.go|文件操作相关| |5|parseargv.go|执行参数相关| |6|pathnode.go|path_with_namespace相关| |7|routinepool.go|routinepool相关| |8|strings.go|字符串处理相关| |9|uuid.go|uuid生成相关|