You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/vendor/github.com/anmitsu/go-shlex
6543 12a1f914f4
Vendor Update Go Libs (#13166)
4 years ago
..
.gitignore switch to use gliderlabs/ssh for builtin server (#7250) 5 years ago
LICENSE switch to use gliderlabs/ssh for builtin server (#7250) 5 years ago
README.md Vendor Update Go Libs (#13166) 4 years ago
go.mod Vendor Update Go Libs (#13166) 4 years ago
shlex.go switch to use gliderlabs/ssh for builtin server (#7250) 5 years ago

README.md

go-shlex

go-shlex is a library to make a lexical analyzer like Unix shell for Go.

Install

go get -u "github.com/anmitsu/go-shlex"

Usage

package main

import (
    "fmt"
    "log"

    "github.com/anmitsu/go-shlex"
)

func main() {
    cmd := `cp -Rdp "file name" 'file name2' dir\ name`
    words, err := shlex.Split(cmd, true)
    if err != nil {
        log.Fatal(err)
    }

    for _, w := range words {
        fmt.Println(w)
    }
}

output

cp
-Rdp
file name
file name2
dir name

Documentation

http://godoc.org/github.com/anmitsu/go-shlex