aboutsummaryrefslogtreecommitdiff
path: root/trunk/src/lspkg
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-15 02:17:04 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-15 02:17:04 +0000
commit53a0c5f4ce910582f0408dc75ad2613f49f8987a (patch)
tree888bf93162fa8b283906434ce8a9cdca6d3437f5 /trunk/src/lspkg
parentb460c618df36b51e96fcb42349735f7aa785090c (diff)
downloadsimplepkg-53a0c5f4ce910582f0408dc75ad2613f49f8987a.tar.gz
simplepkg-53a0c5f4ce910582f0408dc75ad2613f49f8987a.tar.bz2
using 'grep -E' instead of 'egrep'
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@659 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/lspkg')
-rwxr-xr-xtrunk/src/lspkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/lspkg b/trunk/src/lspkg
index ce7b3b9..e35baea 100755
--- a/trunk/src/lspkg
+++ b/trunk/src/lspkg
@@ -61,7 +61,7 @@ if [ ! -z "$pack" ]; then
LIST_PKGS="`ls -1 /$ROOT/$PKG_LIST_DIR/$pack 2> /dev/null`"
else
pack="`echo $pack | sed -e 's/\+/\\\+/'`"
- LIST_PKGS=`eval "ls -1 /$ROOT/$PKG_LIST_DIR/ 2> /dev/null | egrep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
+ LIST_PKGS=`eval "ls -1 /$ROOT/$PKG_LIST_DIR/ 2> /dev/null | grep -E '^$pack-[^-]+-[^-]+-[^-]+$'"`
fi
else
LIST_PKGS="`ls /$ROOT/$PKG_LIST_DIR/ 2> /dev/null`"