]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-php-provides
- find provides for php-pear
[packages/rpm.git] / rpm-php-provides
CommitLineData
c49c7906
PG
1#!/bin/sh
2if [ $# -lt 1 ]; then
3 echo "You have to specify input file"
4 exit 1
5fi
6
7filelist=`echo $@`
8for i in $filelist; do
9 j=`cat $i |egrep -i "^Class" |cut -f 2 -d " "`
10 if [ -n "$j" ]; then
11 echo "Provides: pear($j)"
12 fi
13 j=""
14done
This page took 0.029698 seconds and 4 git commands to generate.