1 2 3 4 5 6 7 8 9 10 11 12 13 14
post_install() { # Link to the binary ln -sf '/opt/AdvancedRestClient/advanced-rest-client' '/usr/local/bin/advanced-rest-client' } post_upgrade() { post_install } post_remove() { # Delete the link to the binary rm -f '/usr/local/bin/advanced-rest-client' }