오늘도 한 뼘 더
[Golang] Go 환경변수 쓰기/ 읽기 본문
728x90
반응형
# 환경변수 쓰기
- os.Setenv
# 환경변수 읽기
- os.Getenv
package main
import (
"fmt"
"os"
}
func main() {
goRoot := os.Getenv("GOROOT")
fmt.Println(goRoot)
// 시스템 환경변수의 GOROOT 값 출력
os.Setenv("TestEnv", "ABC")
fmt.Println(os.Getenv("TestEnv"))
}
// 결과
// ABC
728x90
반응형
'Study > Go' 카테고리의 다른 글
[Golang] net/http 패키지로 API 호출하기 (0) | 2022.09.03 |
---|---|
[Golang] DB 연결할 때, timeout 설정하기 (context) (0) | 2022.09.02 |
[Golang] .env 사용하여 환경변수 설정 (0) | 2022.08.30 |
[Golang] sql: unknown driver "mysql" (forgotten import?) 에러 해결하기 (0) | 2022.08.27 |
[Golang] package ... is not in GOROOT 에러 해결하기 (0) | 2022.08.26 |
Comments