mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00

Credits to bash wizard @edsantiago for the changes. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
18 lines
506 B
Bash
Executable File
18 lines
506 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if test "$#" -ne 1; then
|
|
echo "invalid arguments: usage: $0 path to package"
|
|
exit 1
|
|
fi
|
|
|
|
go list $1/... \
|
|
| xargs -d '\n' go list -f '{{ .ImportPath }}: {{ join .Imports ", " }}' \
|
|
| awk '{ printf "%s\n\n", $0 }' \
|
|
> direct-tree.tmp.$$ && mv -f direct-tree.tmp.$$ direct-tree.txt
|
|
|
|
|
|
go list $1/... \
|
|
| xargs -d '\n' go list -f '{{ .ImportPath }}: {{ join .Deps ", " }}' \
|
|
| awk '{ printf "%s\n\n", $0 }' \
|
|
> transitive-tree.tmp.$$ && mv -f transitive-tree.tmp.$$ transitive-tree.txt
|