잠시만 기다려 주세요

     '대한민국이 더이상 발전하지 못하는 것은 부패한 언론들의 쓰레기짓 때문이다.'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (155)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (606)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - golang Command-Line Flags Arguments, 콘솔, 쉘에서 인자 받기, 구하기. 옵션.
이 름 : 바다아이   |   조회수 : 8907         짧은 주소 : https://www.bada-ie.com/su/?121591785919
// [_Command-line flags_](http://en.wikipedia.org/wiki/Command-line_interface#Command-line_option)
// are a common way to specify options for command-line
// programs. For example, in `wc -l` the `-l` is a
// command-line flag.

package main

// Go provides a `flag` package supporting basic
// command-line flag parsing. We'll use this package to
// implement our example command-line program.
import "flag"
import "fmt"

func main() {

    // Basic flag declarations are available for string,
    // integer, and boolean options. Here we declare a
    // string flag `word` with a default value `"foo"`
    // and a short description. This `flag.String` function
    // returns a string pointer (not a string value);
    // we'll see how to use this pointer below.
    wordPtr := flag.String("word", "foo", "a string")

    // This declares `numb` and `fork` flags, using a
    // similar approach to the `word` flag.
    numbPtr := flag.Int("numb", 42, "an int")
    boolPtr := flag.Bool("fork", false, "a bool")

    // It's also possible to declare an option that uses an
    // existing var declared elsewhere in the program.
    // Note that we need to pass in a pointer to the flag
    // declaration function.
    var svar string
    flag.StringVar(&svar, "svar", "bar", "a string var")

    // Once all flags are declared, call `flag.Parse()`
    // to execute the command-line parsing.
    flag.Parse()

    // Here we'll just dump out the parsed options and
    // any trailing positional arguments. Note that we
    // need to dereference the pointers with e.g. `*wordPtr`
    // to get the actual option values.
    fmt.Println("word:", *wordPtr)
    fmt.Println("numb:", *numbPtr)
    fmt.Println("fork:", *boolPtr)
    fmt.Println("svar:", svar)
    fmt.Println("tail:", flag.Args())
}

결과

go build text.go

root@mr:# ./text -word=opt -numb=7 -fork -svar=flagword: opt
numb: 7
fork: true
svar: flag
tail: []

root@mr:# ./text -word=opt
word: opt
numb: 42
fork: false
svar: bar
tail: []

root@mr:# ./text -word=opt a1 a2 a3
word: opt
numb: 42
fork: false
svar: bar
tail: [a1 a2 a3]

root@mr:# ./text -word=opt a1 a2 a3 -numb=7
word: opt
numb: 42
fork: false
svar: bar
tail: [a1 a2 a3 -numb=7]

root@mr:# ./text -h
Usage of ./text:
  -fork
    	a bool
  -numb int
    	an int (default 42)
  -svar string
    	a string var (default "bar")
  -word string
    	a string (default "foo")

root@mr:# ./text -wat
flag provided but not defined: -wat
Usage of ./text:
  -fork
    	a bool
  -numb int
    	an int (default 42)
  -svar string
    	a string var (default "bar")
  -word string
    	a string (default "foo")


출처 : https://gobyexample.com/command-line-flags
| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1732
178 golang golang , map . 바다아이 1336
177 golang Golang (, , data ) , ... 바다아이 1344
176 golang golang sort ... 바다아이 1573
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1703
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 4976
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 5882
172 golang , String Formatting 바다아이 7514
171 golang rand.Intn , random, , . 바다아이 6972
170 golang golang ... 바다아이 10062
169 golang golang gopath, goroot .. golang 바다아이 7650
168 golang golang ... Force download file example 바다아이 9434
167 golang golang , , cpu, memory, disk 바다아이 10732
166 golang golang , ... GOOS, GOARCH 바다아이 8510
165 golang golang checkbox ... 바다아이 8258
164 golang golang , , http .... 바다아이 8030
163 golang golang nil , nil , nil ... 바다아이 8377
162 golang 2 golang, go , .... golang .... 바다아이 11246
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8562
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8707
159 golang golang , iconv 바다아이 11499
158 golang golang quote escape, unquote 바다아이 8907
157 golang golang , http errorLog , , ... 바다아이 9009
156 golang golang interface , 바다아이 8487
155 golang golang struct .... 바다아이 9153
154 golang golang map map , 바다아이 8678
153 golang golang map .... .... 바다아이 8196
152 golang golang slice copy 바다아이 8297
151 golang golang goto 바다아이 9158
150 golang golang slice sort , int, string, float64 바다아이 8639
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.05752
to webmaster... gogo sea. gogo sea.