diff options
Diffstat (limited to 'source/d/slacktrack/slacktrack-project/old_stuff/findy')
-rwxr-xr-x | source/d/slacktrack/slacktrack-project/old_stuff/findy | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source/d/slacktrack/slacktrack-project/old_stuff/findy b/source/d/slacktrack/slacktrack-project/old_stuff/findy deleted file mode 100755 index 382eea48..00000000 --- a/source/d/slacktrack/slacktrack-project/old_stuff/findy +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -x -function package_name () { - local PACKAGENAME="$( echo $1 | rev | cut -d- -f4- | rev )" - echo ${PACKAGENAME} -} - - -PACKAGE=linuxdoc-tools-2.0-arm-1.txz - -# need to get the find op right. -find . -path './install' -prune -o -type f -printf "%P\n" | egrep -v "^$" > /tmp/log # | \ -( cd /var/log/packages - cat /tmp/log | while read file ; do - grep -H "${file}" * - done ) | sort | uniq | egrep -v "^$( package_name ${PACKAGE}).*:" > /tmp/log2 2>&1 - -cat /tmp/log2 |