view scripts/uninstall-scripts.sh @ 607:84690dfe5560

add some functions for behaviour analysis
author MohamedGomaa
date Tue, 25 Nov 2014 22:49:47 -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