early: fixed modprobe
[opensde-nopast.git] / scripts / Find-Pkg
blob3bb70530a53dce0e07680dcec8b17d5e4038c8a1
1 #!/bin/bash
2 # --- T2-COPYRIGHT-NOTE-BEGIN ---
3 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
5 # T2 SDE: scripts/Find-Pkg
6 # Copyright (C) 2004 - 2006 The T2 SDE Project
8 # More information can be found in the files COPYING and README.
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; version 2 of the License. A copy of the
13 # GNU General Public License can be found in the file COPYING.
14 # --- T2-COPYRIGHT-NOTE-END ---
16 matched=0
18 echo "Searching for matching package names ..."
19 pkg="`echo "$1" | tr A-Z a-z`"
20 x="`cd package/ ; ls -d */*$pkg* 2>/dev/null`"
22 if [ -n "$x" ] ; then
23 echo -e "$x\n"
24 matched=1
27 echo "Searching in package descriptions (may take some time) ..."
28 # grep --color does not work with -i (at least not in GNU sed 2.5.1),
29 # so colorize via sed
30 grep -i "[(\I\|T\)].* $1" package/*/*/*.desc | sed "/$1/I s//\o033[31;1m&\o033[0m/g"
31 [ $? -eq 0 ] && matched=1
33 [ $matched = 0 ] && echo "No match found ..."