จะเข้าถึงอาร์กิวเมนต์บรรทัดคำสั่งที่ส่งไปยังโปรแกรม Go ได้อย่างไร?


89

ฉันจะเข้าถึงอาร์กิวเมนต์บรรทัดคำสั่งใน Go ได้อย่างไร mainพวกเขาไม่ได้ผ่านอาร์กิวเมนต์ไปที่

โปรแกรมที่สมบูรณ์อาจสร้างขึ้นโดยการเชื่อมโยงหลายแพ็คเกจต้องมีหนึ่งแพ็คเกจที่เรียกว่า main พร้อมด้วยฟังก์ชัน

func main() { ... }

กำหนด ฟังก์ชัน main.main () ไม่มีอาร์กิวเมนต์และไม่ส่งคืนค่า


ฉันจะดูflagโมดูล Golang ในตัว ทำให้การแยกวิเคราะห์os.Argsง่ายขึ้นเล็กน้อย
Matej

นอกจากนี้อีกครั้ง: "ไม่คืนค่า" โปรดทราบว่าคุณสามารถโทรos.Exit()เพื่อส่งคืนรหัสออกเฉพาะในกระบวนการโทรได้
Mark Reed

คำตอบ:


114

คุณสามารถเข้าถึงอาร์กิวเมนต์บรรทัดคำสั่งโดยใช้os.Argsตัวแปร ตัวอย่างเช่น,

package main

import (
    "fmt"
    "os"
)

func main() {
    fmt.Println(len(os.Args), os.Args)
}

คุณยังสามารถใช้แฟล็กแพ็กเกจซึ่งใช้การแยกแฟล็กบรรทัดคำสั่ง


11

อาร์กิวเมนต์บรรทัดคำสั่งสามารถพบได้ในos.Args ในกรณีส่วนใหญ่แฟล็กแพ็กเกจจะดีกว่าเนื่องจากอาร์กิวเมนต์แยกวิเคราะห์ให้คุณ


9

ค่าสถานะเป็นแพ็คเกจที่ดีสำหรับสิ่งนั้น

// [_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())
}

1
ดูเหมือนสำเนาของGo by example
Grijesh Chauhan

7

คำตอบของปีเตอร์คือสิ่งที่คุณต้องการหากคุณต้องการเพียงแค่รายการโต้แย้ง

แต่ถ้าคุณกำลังมองหาการทำงานคล้ายกับปัจจุบันบน UNIX ที่แล้วคุณสามารถใช้การดำเนินไปของdocopt คุณสามารถทดลองใช้งานได้ที่นี่

docopt จะส่งคืน JSON ที่คุณสามารถประมวลผลไปยังเนื้อหาในดวงใจได้


1
ความจำเป็นอาจเป็นคำที่แรงเกินไป แนะนำ "ถ้าอย่างนั้นคุณทำได้"
Matt Joiner

7

คำตอบที่รวดเร็ว:

package main

import ("fmt"
        "os"
)

func main() {
    argsWithProg := os.Args
    argsWithoutProg := os.Args[1:]
    arg := os.Args[3]
    fmt.Println(argsWithProg)
    fmt.Println(argsWithoutProg)
    fmt.Println(arg)
}

ทดสอบ: $ go run test.go 1 2 3 4 5

ออก:

[/tmp/go-build162373819/command-line-arguments/_obj/exe/modbus 1 2 3 4 5]
[1 2 3 4 5]
3

หมายเหตุ : os.Argsให้การเข้าถึงอาร์กิวเมนต์บรรทัดคำสั่งดิบ โปรดสังเกตว่าค่าแรกในส่วนนี้คือเส้นทางไปยังโปรแกรมและos.Args[1:]เก็บอาร์กิวเมนต์ไปยังโปรแกรม ข้อมูลอ้างอิง


1

คุณสามารถใช้แพ็คเกจค่าสถานะ Golang ได้เช่น

package main

import (
    "flag"
    "fmt"
)

func main() {

    wordPtr := flag.String("word", "default value", "a string for description")
    flag.Parse()
    fmt.Println("word:", *wordPtr)

}

โทรกับ cli

 go run main.go -word=hello
 
 

เอาท์พุท

word: hello
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.