Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for runTool (0.07 sec)

  1. src/cmd/go/internal/tool/tool.go

    	"fmt"
    	"go/build"
    	"internal/platform"
    	"os"
    	"os/exec"
    	"os/signal"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    )
    
    var CmdTool = &base.Command{
    	Run:       runTool,
    	UsageLine: "go tool [-n] command [args...]",
    	Short:     "run specified go tool",
    	Long: `
    Tool runs the go tool command identified by the arguments.
    With no arguments it prints the list of known tools.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top