aboutsummaryrefslogtreecommitdiffstats
path: root/profile.d/msec.sh
diff options
context:
space:
mode:
authordaviddavid <geiger.david68210@gmail.com>2023-05-05 20:00:16 +0200
committerdaviddavid <geiger.david68210@gmail.com>2023-05-05 20:00:16 +0200
commitb359f5cfddc47e1a3701c77dc95d9f04c6740d27 (patch)
tree5343300dfd0d53852e9ec906e805bb7d6f005ffd /profile.d/msec.sh
parent59b1889eab06457cbba28e37a30c6e204a93a57c (diff)
downloadmsec-b359f5cfddc47e1a3701c77dc95d9f04c6740d27.tar
msec-b359f5cfddc47e1a3701c77dc95d9f04c6740d27.tar.gz
msec-b359f5cfddc47e1a3701c77dc95d9f04c6740d27.tar.bz2
msec-b359f5cfddc47e1a3701c77dc95d9f04c6740d27.tar.xz
msec-b359f5cfddc47e1a3701c77dc95d9f04c6740d27.zip
Use `grep -F` instead of deprecated `fgrep`
Diffstat (limited to 'profile.d/msec.sh')
-rwxr-xr-xprofile.d/msec.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.d/msec.sh b/profile.d/msec.sh
index 4a902e7..2b1a7a5 100755
--- a/profile.d/msec.sh
+++ b/profile.d/msec.sh
@@ -20,7 +20,7 @@ else
fi
if [ "$ALLOW_CURDIR_IN_PATH" == "yes" ]; then
- if ! echo ${PATH} | fgrep -q :.; then
+ if ! echo ${PATH} | grep -E -q :.; then
export PATH=$PATH:.
fi
fi