• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSEH A D14-Feb-20201 KiB2217

README.mdH A D14-Feb-2020317 1613

go.modH A D14-Feb-202094 63

go.sumH A D14-Feb-2020968 1211

shellstring.goH A D14-Feb-20201.8 KiB8577

shellstring_test.goH A D14-Feb-20201.2 KiB4944

README.md

1go-shellstring
2===
3
4
5```
6"foo", []string{"foo"}
7"foo bar", []string{"foo", "bar"}
8`"foo"`, []string{"foo"}
9`"foo bar"`, []string{"foo bar"}
10`"foo" "bar"`, []string{"foo", "bar"}
11`'foo'`, []string{"foo"}
12`'foo bar'`, []string{"foo bar"}
13`'foo' 'bar'`, []string{"foo", "bar"}
14`'foo' 'bar'`, []string{"foo", "bar"}
15```
16