🧹 A command line utility to locate and manage duplicate and empty files 🧹
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
218 B

BUILD_DIR="build"
OUTPUT_DIR="bin"
DEST_DIR="/usr/local/bin/"
BROOM_EXE_NAME="broom"
if [ -e $OUTPUT_DIR/$BROOM_EXE_NAME ]
then
mv $OUTPUT_DIR/$BROOM_EXE_NAME $DEST_DIR
else
echo "Broom not found in bin/"
fi