Obsidian/Recognition/Programing/Linux/Linux 프로그램/리눅스 crontab.md

15 lines
234 B
Markdown
Raw Permalink Normal View History

2024-03-29 08:36:47 +00:00
#Linux
- tibero archive log 일괄 삭제 스크립트
```
#! /bin/bash
# +---------------------------------+
# tibero archive log delete
# +---------------------------------+
find /sdata1/tbarch/ -mtime +3 -type f -delete
```