log explit .txt matching

This commit is contained in:
James Tomasino 2018-12-03 16:17:55 -05:00
parent eca13d6eb2
commit e699b6d8db
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ check_log () {
# compare against files in ship directory
# store list of unpublished logs
logs=$(grep "^0${ship}" "/var/gopher/listing.gophermap" | awk -F'\t' '{print $2}')
files=$(find "/var/gopher/$ship" -name "*.txt" -not -path '*/\.*' -type f | sed 's|/var/gopher||')
files=$(find "/var/gopher/$ship" -regex ".*\\.txt$" -not -path '*/\.*' -type f | sed 's|/var/gopher||')
uniq=$(printf "%s\\n%s" "$logs" "$files" | sort | uniq -u)
if [ -z "$uniq" ]; then