#!/bin/bash

echo "You are about to uninstall co-op support for the"
echo "original Half-Life: Blue Shift single-player storyline maps."
echo ""
echo "Half-Life: Blue Shift support takes up about 55MB of space,"
echo "so this is useful if you're low on disk space."
echo "-"

echo "Working..."

cd maps
find -type f -name "ba_*.*" | grep -v "~$" | grep -v "ba_global*" | xargs rm 2> /dev/null
cd ..

echo "-"
echo "Finished! "

