mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-30 06:47:53 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
14 lines
527 B
Bash
14 lines
527 B
Bash
# try to find an md5 program
|
|
|
|
if [ X"$(echo | md5sum -b 2> /dev/null)" != X ]; then
|
|
do_md5sum() { md5sum -b $1; }
|
|
elif [ X"$(echo | command md5 2> /dev/null)" != X ]; then
|
|
do_md5sum() { command md5 $1 | sed 's#MD5 (\(.*\)) = \(.*\)#\2 *\1#'; }
|
|
elif [ -x /sbin/md5 ]; then
|
|
do_md5sum() { /sbin/md5 -r $1 | sed 's/\([0-9a-f]\) [ *]*/\1 */'; }
|
|
elif openssl version >/dev/null 2>&1; then
|
|
do_md5sum() { openssl md5 $1 | sed 's/MD5(\(.*\))= \(.*\)/\2 *\1/'; }
|
|
else
|
|
do_md5sum() { echo No md5sum program found; }
|
|
fi
|