#!/bin/bash targetdir=/mnt/raid0/apache_backup filename="backup_$(date +'%Y-%m-%d_%H-%M').zip" dir1=/etc/apache dir2=/var/www/html if [[ -d $dir1 && -d $dir2 ]] then if [[ ! -d $targetdir ]] then mkdir $targetdir fi cd $targetdir tar -czvf $filename $dir1 $dir2 else echo Verzeichnisse nicht vorhanden exit 1 fi