@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux adweb87 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64
Current Path :
/
usr
/
libexec
/
Path :
Upload File :
New :
File
Dir
//usr/libexec/man-cmp.sh
#!/bin/sh if [ -x /usr/bin/cmp ] ; then /usr/bin/cmp -s "$1" "$2" else sha1=`sha1sum -b "$1" | cut -d' ' -f 1` sha2=`sha1sum -b "$2" | cut -d' ' -f 1` [ -f "$1" -a -f "$2" -a "$sha1" = "$sha2" ] fi