#!/bin/bash12# References: http://www.thegeekstuff.com/2012/09/strip-command-examples/3# http://www.muppetlabs.com/~breadbox/software/elfkickers.html4# https://ptspts.blogspot.hr/2013/12/how-to-make-smaller-c-and-c-binaries.html56# https://github.com/BR903/ELFkickers/tree/master/sstrip7# https://www.ubuntuupdates.org/package/core/cosmic/universe/updates/postgresql-server-dev-1089# For example:10# python ../../../../../extra/cloak/cloak.py -d -i lib_postgresqludf_sys.so_11# ../../../../../extra/shutils/strip.sh lib_postgresqludf_sys.so12# python ../../../../../extra/cloak/cloak.py -i lib_postgresqludf_sys.so13# rm lib_postgresqludf_sys.so1415strip -S --strip-unneeded --remove-section=.note.gnu.gold-version --remove-section=.comment --remove-section=.note --remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag $*16sstrip $*17181920