2020-11-23 10:38:43 -05:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-06-04 19:42:53 -04:00
|
|
|
core "github.com/v2fly/v2ray-core/v4"
|
2020-12-04 09:32:55 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/main/commands/base"
|
2020-11-23 10:38:43 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// CmdVersion prints V2Ray Versions
|
|
|
|
var CmdVersion = &base.Command{
|
|
|
|
UsageLine: "{{.Exec}} version",
|
2021-02-21 10:02:42 -05:00
|
|
|
Short: "print V2Ray version",
|
2020-11-28 09:06:03 -05:00
|
|
|
Long: `Prints the build information for V2Ray.
|
2020-11-23 10:38:43 -05:00
|
|
|
`,
|
|
|
|
Run: executeVersion,
|
|
|
|
}
|
|
|
|
|
|
|
|
func executeVersion(cmd *base.Command, args []string) {
|
|
|
|
printVersion()
|
|
|
|
}
|
|
|
|
|
|
|
|
func printVersion() {
|
|
|
|
version := core.VersionStatement()
|
|
|
|
for _, s := range version {
|
|
|
|
fmt.Println(s)
|
|
|
|
}
|
|
|
|
}
|