#!/bin/sh

if [ -r $1 ]; then
  echo
  echo "Files to delete:"
  echo
  ls -sk `cat $1`
  echo
  echo -n "Are you sure (y/ )? "
  read INPUT
  if [ "$INPUT" = "y" ] || [ "$INPUT" = "Y" ]; then
    rm `cat $1`
    rm $1
  fi
else
  echo
  echo "The Linux Ultra Sound Project isn't installed..."
  echo
fi
