#!/bin/bash
##########################################################################
# Shellscript : Prüfen ob IA aktuell ist.
# Autor : Andreas Vogel, macenterprise gmbh, 30.09.2019
##########################################################################
file="/Applications/Identity Agent.app/Contents/update_28.08.2019"
if [ -e "$file" ]
then
echo ""Present""
else
echo ""Not Present""
fi