aboutsummaryrefslogtreecommitdiffstats
path: root/filter.sh
diff options
context:
space:
mode:
Diffstat (limited to 'filter.sh')
-rwxr-xr-xfilter.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/filter.sh b/filter.sh
deleted file mode 100755
index cd96fd8..0000000
--- a/filter.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-#---------------------------------------------------------------
-# Project : Mageia
-# Module : rpm
-# File : filter.sh
-# Version : $Id: filter.sh 227371 2007-09-08 15:34:39Z anssi $
-# Author : Frederic Lepied
-# Created On : Tue May 13 15:45:17 2003
-# Purpose : filter using grep and first argument the
-# command passed as the rest of the command line
-#---------------------------------------------------------------
-
-GREP_ARG="$1"
-FILE_GREP_ARG="$2"
-BUILDROOT="$3"
-PROG="$4"
-shift 4
-
-# use ' ' to signify no arg as rpm filter empty strings from
-# command line :(
-if [ "$FILE_GREP_ARG" != ' ' ]; then
- # get rid of double and trailing slashes
- BUILDROOT="$(echo "$BUILDROOT" | perl -pe 's,/+,/,g;s,/$,,')"
- perl -pe "s,^$BUILDROOT,," | grep -v "$FILE_GREP_ARG" | perl -pe "s,^,$BUILDROOT,"
-else
- cat
-fi | \
-$PROG "$@" | \
-if [ "$GREP_ARG" != ' ' ]; then
- grep -v "$GREP_ARG"
-else
- cat
-fi
-exit ${PIPESTATUS[1]}
-
-# filter.sh ends here