Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ddddddO committed Jun 10, 2023
1 parent f3acd0d commit 855e890
Show file tree
Hide file tree
Showing 8 changed files with 604 additions and 152 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -735,11 +735,11 @@ func preparePrimate() *gtree.Node {

```

- You can also output JSON 👉 [ref](https://github.com/ddddddO/gtree/blob/master/sample/programmable/main.go#L61)
- You can also output JSON 👉 [ref](https://github.com/ddddddO/gtree/blob/master/example/programmable/main.go#L61)

- You can also output YAML 👉 [ref](https://github.com/ddddddO/gtree/blob/master/sample/programmable/main.go#L198)
- You can also output YAML 👉 [ref](https://github.com/ddddddO/gtree/blob/master/example/programmable/main.go#L198)

- You can also output TOML 👉 [ref](https://github.com/ddddddO/gtree/blob/master/sample/programmable/main.go#L262)
- You can also output TOML 👉 [ref](https://github.com/ddddddO/gtree/blob/master/example/programmable/main.go#L262)

---

Expand All @@ -757,7 +757,7 @@ import (
)

// cd github.com/ddddddO/gtree
// find . -type d -name .git -prune -o -type f -print | go run sample/find_pipe_programmable-gtree/main.go
// find . -type d -name .git -prune -o -type f -print | go run example/find_pipe_programmable-gtree/main.go
func main() {
var (
root *gtree.Node
Expand Down Expand Up @@ -854,7 +854,7 @@ func main() {

```

- Convert `go list -deps ./...` to tree 👉 [link](https://github.com/ddddddO/gtree/blob/master/sample/go-list_pipe_programmable-gtree/main.go)
- Convert `go list -deps ./...` to tree 👉 [link](https://github.com/ddddddO/gtree/blob/master/example/go-list_pipe_programmable-gtree/main.go)
- inspired by [nikolaydubina/go-recipes](https://github.com/nikolaydubina/go-recipes#readme) !

#### *MkdirProgrammably* func
Expand Down Expand Up @@ -910,7 +910,7 @@ func main() {
}
```

[details](https://github.com/ddddddO/gtree/blob/master/sample/programmable/main.go#L354)
[details](https://github.com/ddddddO/gtree/blob/master/example/programmable/main.go#L354)

---

Expand Down
547 changes: 547 additions & 0 deletions example/find_pipe_programmable-gtree/main.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@ import (
"github.com/ddddddO/gtree"
)

// cd github.com/ddddddO/gtree
// go list -deps ./... | go run sample/go-list_pipe_programmable-gtree/main.go
// Example:
// $ cd github.com/ddddddO/gtree
// $ go list -deps ./cmd/gtree/
// internal/goarch
// unsafe
// internal/unsafeheader
// internal/abi
// internal/cpu
// ...
// $ go list -deps ./cmd/gtree/ | go run example/go-list_pipe_programmable-gtree/main.go
func main() {
var (
root = gtree.NewRoot("[All Dependencies]")
Expand Down Expand Up @@ -42,17 +50,20 @@ func main() {
// │ ├── abi
// │ ├── cpu
// │ ├── bytealg
// │ ├── coverage
// │ │ └── rtcov
// │ ├── goexperiment
// │ ├── goos
// │ ├── reflectlite
// │ ├── race
// │ ├── itoa
// │ ├── race
// │ ├── fmtsort
// │ ├── oserror
// │ ├── syscall
// │ │ ├── unix
// │ │ └── execenv
// │ ├── poll
// │ ├── safefilepath
// │ └── testlog
// ├── unsafe
// ├── runtime
Expand All @@ -62,39 +73,41 @@ func main() {
// │ ├── sys
// │ └── syscall
// ├── errors
// ├── sync
// │ └── atomic
// ├── io
// │ ├── fs
// │ └── ioutil
// ├── math
// │ └── bits
// ├── unicode
// │ ├── utf8
// │ └── utf16
// ├── bytes
// ├── strings
// ├── bufio
// ├── encoding
// │ ├── binary
// │ ├── base64
// │ └── json
// ├── math
// │ └── bits
// ├── strconv
// ├── sync
// │ └── atomic
// ├── reflect
// ├── sort
// ├── io
// │ ├── fs
// │ └── ioutil
// ├── syscall
// ├── time
// ├── path
// │ └── filepath
// ├── os
// ├── fmt
// ├── golang.org
// │ └── x
// │ └── sys
// │ ├── internal
// │ │ └── unsafeheader
// │ └── unix
// ├── bytes
// ├── strings
// ├── bufio
// ├── container
// │ └── list
// ├── context
// ├── encoding
// │ ├── binary
// │ ├── base64
// │ └── json
// ├── github.com
// │ ├── ddddddO
// │ │ └── gtree
// │ │ ├── markdown
// │ │ └── cmd
// │ │ └── gtree
// │ ├── mattn
// │ │ ├── go-isatty
// │ │ └── go-colorable
Expand All @@ -103,35 +116,33 @@ func main() {
// │ ├── pelletier
// │ │ └── go-toml
// │ │ └── v2
// │ │ └── internal
// │ │ ├── danger
// │ │ ├── ast
// │ │ └── tracker
// │ ├── ddddddO
// │ │ └── gtree
// │ │ ├── cmd
// │ │ │ └── gtree
// │ │ └── sample
// │ │ ├── find_pipe_programmable-gtree
// │ │ ├── go-list_pipe_programmable-gtree
// │ │ ├── like_cli
// │ │ │ └── adapter
// │ │ └── programmable
// │ │ ├── internal
// │ │ │ ├── characters
// │ │ │ ├── danger
// │ │ │ └── tracker
// │ │ └── unstable
// │ ├── russross
// │ │ └── blackfriday
// │ │ └── v2
// │ ├── cpuguy83
// │ │ └── go-md2man
// │ │ └── v2
// │ │ └── md2man
// │ ├── xrash
// │ │ └── smetrics
// │ └── urfave
// │ └── cli
// │ └── v2
// ├── golang.org
// │ └── x
// │ ├── sys
// │ │ └── unix
// │ └── sync
// │ └── errgroup
// ├── regexp
// │ └── syntax
// ├── gopkg.in
// │ └── yaml.v2
// ├── context
// │ └── yaml.v3
// ├── flag
// ├── html
// ├── text
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion sample/like_cli/main.go → example/like_cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/ddddddO/gtree/sample/like_cli/adapter"
"github.com/ddddddO/gtree/example/like_cli/adapter"
)

func main() {
Expand Down
File renamed without changes.
106 changes: 0 additions & 106 deletions sample/find_pipe_programmable-gtree/main.go

This file was deleted.

0 comments on commit 855e890

Please sign in to comment.