????

Your IP : 18.191.223.239


Current Path : /usr/share/cagefs-skeleton/proc/328294/root/usr/libexec/
Upload File :
Current File : //usr/share/cagefs-skeleton/proc/328294/root/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