6 lines
183 B
Bash
Executable file
6 lines
183 B
Bash
Executable file
#!/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
|