Skip to content

Instantly share code, notes, and snippets.

@Trip09
Created February 14, 2020 10:16
Show Gist options
  • Save Trip09/5b7dca426ce825c97e735afc4dfa4ad4 to your computer and use it in GitHub Desktop.
Save Trip09/5b7dca426ce825c97e735afc4dfa4ad4 to your computer and use it in GitHub Desktop.
Bash convert md5 on CSV
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