7 lines
183 B
Text
7 lines
183 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Cleanup stale files (removed files that the main script missout of removing (race))
|
||
|
find /opt/mdqp/work/seen_metadata/ -type f -mtime +2 -print -delete
|