mirror of
https://github.com/clockworkpi/launchergo.git
synced 2025-12-12 10:18:59 +01:00
9 lines
109 B
Bash
Executable File
9 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
find . -iname "*.so" -exec md5sum {} + > md5sum.log
|
|
echo `md5sum main` >> md5sum.log
|
|
|
|
|
|
|