mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
5 lines
106 B
Text
5 lines
106 B
Text
string md5sum(string file)
|
|
{
|
|
return substr(strtok(backtick("md5sum " + file)[0], " \t")[0], 0, 5);
|
|
}
|
|
|