Commit 907dd7d7 authored by Roman Alifanov's avatar Roman Alifanov

say hello to gen_md5!

parent 6b613d5c
#!/bin/bash
if [ "$#" -eq 0 ]; then
echo "Использование: $0 <список файлов>"
exit 1
fi
for file in "$@"; do
if [ ! -f "$file" ]; then
echo "Файл '$file' не существует. Пропуск."
continue
fi
if [[ "$file" == *.md5 ]]; then
echo "Файл '$file' уже является .md5. Пропуск."
continue
fi
md5_file="${file}.md5"
if [ -f "$md5_file" ]; then
echo "Файл суммы '$md5_file' уже существует. Пропуск."
continue
fi
md5sum "$file" > "$md5_file"
echo "Сумма MD5 для '$file' записана в '$md5_file'."
done
echo "Обработка завершена."
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment