#!/bin/bash
#============================================================================
# Title       : purgelogs
# Description : Delete all archivelogs for the current ORACLE_SID
# Author      : Bart Sjerps <bart@dirty-cache.com>
# License     : GPLv3+
# ---------------------------------------------------------------------------

rman target / <<< 'delete noprompt archivelog all;'
