|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/usr/lib/rpm/ |
Upload File : |
#!/bin/sh # # Gets file list on standard input and RPM_BUILD_ROOT as first parameter # and searches for omitted files (not counting directories). # Returns it's output on standard output. # # filon@pld.org.pl RPM_BUILD_ROOT=$1 if [ ! -d "$RPM_BUILD_ROOT" ] ; then cat > /dev/null exit 1 fi [ "$TMPDIR" ] || TMPDIR=/tmp FILES_DISK=`mktemp $TMPDIR/rpmXXXXXX` FILES_RPM=`mktemp $TMPDIR/rpmXXXXXX` find $RPM_BUILD_ROOT -type f -o -type l | LC_ALL=C sort > $FILES_DISK LC_ALL=C sort > $FILES_RPM diff -d "$FILES_DISK" "$FILES_RPM" | grep "^< " | cut -c3- | while read f; do echo $f | sed -e "s#^$RPM_BUILD_ROOT# #g" done rm -f $FILES_DISK rm -f $FILES_RPM