#!/bin/bash IFS=$'\n' while read password; do echo -n $password | openssl dgst -sha256 | cut -d '=' -f2 | awk '{print $1}' done < parole.txt