mirror of
https://github.com/MaintainTeam/Hypatia.git
synced 2025-02-28 21:38:21 +03:00
5 lines
199 B
Bash
5 lines
199 B
Bash
#!/bin/sh
|
|
#License: CC0
|
|
#Description: Hypatia conversion script for https://github.com/avast/covid-19-ioc
|
|
|
|
tail -n +2 */*.csv | sed 's/,/ , /' | awk '{ print $1 }' | sort -u >> avast-covid19.sha256
|