7 lines
109 B
Bash
7 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
find . -maxdepth 1 -type f -name "*.json" ! -iname "shadowserver*.json" -delete
|