diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2019-07-16 14:14:48 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2019-07-16 14:16:16 +0200 |
commit | 294ddc472047f5a13bcf1d9b41407e18b1fad984 (patch) | |
tree | 4eeb1e0b2c187645cb66733cc0445a085d9472e7 /dependencies/analyses/nm-symbols-analysis.sh | |
parent | 25d63f009dfb0bd646b761591a08989cfd9d4fda (diff) | |
download | podman-294ddc472047f5a13bcf1d9b41407e18b1fad984.tar.gz podman-294ddc472047f5a13bcf1d9b41407e18b1fad984.tar.bz2 podman-294ddc472047f5a13bcf1d9b41407e18b1fad984.zip |
dependency/analyses: simplify scripts
Credits to bash wizard @edsantiago for the changes.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'dependencies/analyses/nm-symbols-analysis.sh')
-rwxr-xr-x | dependencies/analyses/nm-symbols-analysis.sh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/dependencies/analyses/nm-symbols-analysis.sh b/dependencies/analyses/nm-symbols-analysis.sh index 924246715..361b746e4 100755 --- a/dependencies/analyses/nm-symbols-analysis.sh +++ b/dependencies/analyses/nm-symbols-analysis.sh @@ -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}' |