Files
bryce-solr/clean_locks.sh
2026-05-15 22:19:14 -07:00

8 lines
129 B
Bash

#!/bin/bash
files=$(find /var/solr -name write.lock)
if [ -n "$files" ]; then
rm $files
else
echo "No files found."
fi