#!/bin/bash

if [[ "$0" == *"Slow"* ]]; then
   echo Running Not-So-Fast Prog
else
   echo Running Fast Prog
fi