From 30a104067d53f6f21346dad378fe4fb90c790167 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Mon, 5 Mar 2012 22:15:10 -0600 Subject: Reduce path tests for $TDEDIR/games and $TDEDIR/bin to one regex command each. --- starttde | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'starttde') diff --git a/starttde b/starttde index d06fdb111..8a66c7455 100644 --- a/starttde +++ b/starttde @@ -156,12 +156,8 @@ if [ -d $TDEDIR/games ]; then # search patch is respected. # Is there a way we can check that $TDEDIR/games is always placed only just before # /usr/games in the search path? - if [ "`echo $PATH | grep \"^/usr/games:\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|^/usr/games:|$TDEDIR/games:/usr/games:|\"`" - elif [ "`echo $PATH | grep \":/usr/games$\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|:/usr/games$|:$TDEDIR/games:/usr/games|\"`" - elif [ "`echo $PATH | grep \":/usr/games:\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|:/usr/games:|:$TDEDIR/games:/usr/games:|\"`" + if [ "`echo $PATH | grep \"^\\(.*:\\)\\?/usr/games\\(:.*\\)\\?$\"`" != "" ]; then + export PATH="`echo $PATH | sed \"s|^\\(.*:\\)\\?/usr/games\\(:.*\\)\\?$|\\1$TDEDIR/games:/usr/games\\2|\"`" else export PATH=$TDEDIR/games:$PATH fi @@ -175,12 +171,8 @@ if [ -d $TDEDIR/bin ]; then # elsewhere, then they need to ensure the traditional search patch is respected. # Is there a way we can check that $TDEDIR/bin is always placed only just before # /usr/bin in the search path? - if [ "`echo $PATH | grep \"^/usr/bin:\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|^/usr/bin:|$TDEDIR/bin:/usr/bin:|\"`" - elif [ "`echo $PATH | grep \":/usr/bin$\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|:/usr/bin$|:$TDEDIR/bin:/usr/bin|\"`" - elif [ "`echo $PATH | grep \":/usr/bin:\"`" != "" ]; then - export PATH="`echo $PATH | sed \"s|:/usr/bin:|:$TDEDIR/bin:/usr/bin:|\"`" + if [ "`echo $PATH | grep \"^\\(.*:\\)\\?/usr/bin\\(:.*\\)\\?$\"`" != "" ]; then + export PATH="`echo $PATH | sed \"s|^\\(.*:\\)\\?/usr/bin\\(:.*\\)\\?$|\\1$TDEDIR/bin:/usr/bin\\2|\"`" else export PATH=$TDEDIR/bin:$PATH fi -- cgit v1.2.1