From b849045a65bb37bee3ab6c0e88ba21559a50d420 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Sat, 9 Nov 2024 03:46:46 +0200 Subject: Updates - New script ./make_new_list.sh - Style improvements - README update - Safety net --- create_list.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'create_list.sh') diff --git a/create_list.sh b/create_list.sh index d39fdfa..bc101be 100755 --- a/create_list.sh +++ b/create_list.sh @@ -20,6 +20,12 @@ # Just for convenience, we will simply make up a list of files found in hashes # we will be searching for files smaller than 4096 bytes. An extra check with # `file` to find 'JSON text data'. +if [ -f "hashes/list" ] +then + echo 'ERROR: This script creates the first list only' + echo 'Use ./append_latest_list.sh instead' + exit 1 +fi json_file_list="$(mktemp)" find hashes -type f -size -4096 | sort | while read filepath do -- cgit v1.2.3