dependency/analyses: simplify scripts

Credits to bash wizard @edsantiago for the changes.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2019-07-16 14:14:48 +02:00
parent 25d63f009d
commit 294ddc4720
2 changed files with 6 additions and 15 deletions

View File

@ -5,16 +5,13 @@ if test "$#" -ne 1; then
exit 1
fi
DATA=$(go list $1/... \
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
echo "$DATA" > direct-tree.txt
DATA=$(go list $1/... \
go list $1/... \
| xargs -d '\n' go list -f '{{ .ImportPath }}: {{ join .Deps ", " }}' \
| awk '{ printf "%s\n\n", $0 }' \
)
echo "$DATA" > transitive-tree.txt
> transitive-tree.tmp.$$ && mv -f transitive-tree.tmp.$$ transitive-tree.txt

View File

@ -5,11 +5,5 @@ if test "$#" -ne 1; then
exit 1
fi
DATA=$(go tool nm -size "$1" \
| awk 'NF==4 {printf "%s\t%s\t%s\n", $2, $3, $4}' \
| grep -v -P "\t_\t" \
| grep -P "\tt\t" \
| awk ' {printf "%s\t\t%s\n", $1, $3} ' \
)
echo "$DATA"
go tool nm -size "$1" \
| awk 'NF==4 && $3=="t" {printf "%s\t\t%s\n", $2, $4}'