OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

  1. #!/bin/bash
  2. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # T2 SDE: scripts/Find-Pkg
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  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 ---
  15. matched=0
  16. echo "Searching for matching package names ..."
  17. pkg="`echo "$1" | tr A-Z a-z`"
  18. x="`cd package/ ; ls -d */*$pkg* 2>/dev/null`"
  19. if [ -n "$x" ] ; then
  20. echo -e "$x\n"
  21. matched=1
  22. fi
  23. echo "Searching in package descriptions (may take some time) ..."
  24. # grep --color does not work with -i (at least not in GNU sed 2.5.1),
  25. # so colorize via sed
  26. grep -i "[(\I\|T\)].* $1" package/*/*/*.desc | sed "/$1/I s//\o033[31;1m&\o033[0m/g"
  27. [ $? -eq 0 ] && matched=1
  28. [ $matched = 0 ] && echo "No match found ..."