view scripts/uninstall-scripts.sh @ 606:75ad9c0d6cc3

update the method to use multi featutes instead on single feature
author MohamedGomaa
date Mon, 24 Nov 2014 13:02:10 -0500
parents 5b534ad95bfb
children f3a0b652b590
line wrap: on
line source

#!/bin/sh
installDirname='/usr/local/bin'
for filename in *
do
    echo 'rm '$installDirname/$filename
    rm $installDirname/$filename
done