view scripts/uninstall-scripts.sh @ 613:306db0f3c7a2

move 4 functions from trajLearning file
author MohamedGomaa
date Thu, 04 Dec 2014 19:07:55 -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