view scripts/uninstall-scripts.sh @ 655:39fa1c998b29

removed the abstract class to represent folders of images or video files since the capability is now built in OpenCV
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 07 May 2015 16:30:58 +0200
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