Created
February 14, 2020 10:16
-
-
Save Trip09/5b7dca426ce825c97e735afc4dfa4ad4 to your computer and use it in GitHub Desktop.
Bash convert md5 on CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `cat emails_sem_md5.csv`;do email=$(echo "$i" | tr '[:upper:]' '[:lower:]') ; echo "$email,$(echo -n $email|md5sum|cut -d ' ' -f 1 )" >> car.14.02.csv ;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment