| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/Tools/scripts/ |
Upload File : |
#!/bin/sh
# Version 0.2
# This script is public domain, for any given public, in every type of domain.
# onatan@gmail.com
usage(){
echo "$0 [/usr/ports]"
echo "Locates identical pkg-descr files"
exit 1
}
DIR=${1-/usr/ports}
[ -d ${DIR} ] || usage
find ${DIR}/ -name pkg-descr -exec md5 -r {} \; 2>/dev/null | \
sort | \
xargs -L 9999999999 | \
awk ' \
{ size=split($0,arr," ") } \
{ for (i=1; i<size; ++i) \
if ( arr[i] == arr[i+2] ) \
print arr[i+1] " == " arr[i+3] \
} \
'