mirror of
https://github.com/cesanta/mongoose
synced 2026-08-25 22:26:06 -04:00
5 lines
170 B
Bash
Executable file
5 lines
170 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd /data/downloads/health
|
|
find . -mtime +28 -not -name 'index*.json' -delete
|
|
find . -name "*.json" -not -name 'index*.json' | jq -R . | jq -s . > index.json
|