#!/bin/bashif[-d"./caffe"];thenecho"Please remove the existing [caffe] folder and re-run this script."exit 1fi# Download the version of Caffe that can be used for generating fooling images via EAs.echo"Downloading Caffe ..."wget https://github.com/Evolving-AI-Lab/fooling/archive/master.zipecho"Extracting into ./caffe"unzip master.zipmv ./fooling-master/caffe ./# Clean uprm-rf fooling-master master.zipecho"Done."