Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / cmd / rdeps / README.md
diff --git a/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/cmd/rdeps/README.md b/.config/coc/extensions/coc-go-data/tools/pkg/mod/honnef.co/go/tools@v0.0.1-2020.1.5/cmd/rdeps/README.md
new file mode 100644 (file)
index 0000000..b470bd1
--- /dev/null
@@ -0,0 +1,27 @@
+rdeps scans GOPATH for all reverse dependencies of a set of Go
+packages.
+
+# Installation
+
+See [the main README](https://github.com/dominikh/go-tools#installation) for installation instructions.
+
+# Usage
+
+Invoke `rdeps` with zero or more arguments that are Go packages to
+print their reverse dependencies.
+
+Alternatively, use the `-stdin` flag and provide a list of Go packages
+on standard input.
+
+See `rdeps -h` for all flags.
+
+# Example
+
+```
+$ rdeps database/sql 2>/dev/null | head -5
+github.com/GoogleCloudPlatform/golang-samples/docs/appengine/cloudsql
+github.com/lxc/lxd/lxd
+github.com/mattn/go-sqlite3/sqltest
+github.com/mgutz/dat/sql-runner
+github.com/mgutz/dat
+```