diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-11-09 03:46:46 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-11-09 03:46:46 +0200 |
commit | b849045a65bb37bee3ab6c0e88ba21559a50d420 (patch) | |
tree | df737496b195c01fbcaceb6236383bcebfe6d281 /create_list.sh | |
parent | 6cbfffa05b858231a6087f95eb07cd94a9d20a67 (diff) | |
download | arching-kaos-radio-b849045a65bb37bee3ab6c0e88ba21559a50d420.tar.gz arching-kaos-radio-b849045a65bb37bee3ab6c0e88ba21559a50d420.tar.bz2 arching-kaos-radio-b849045a65bb37bee3ab6c0e88ba21559a50d420.zip |
Updates
- New script ./make_new_list.sh
- Style improvements
- README update
- Safety net
Diffstat (limited to 'create_list.sh')
-rwxr-xr-x | create_list.sh | 6 |
1 files changed, 6 insertions, 0 deletions
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 |