aboutsummaryrefslogtreecommitdiffstats
path: root/profile.d/msec.csh
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.csh
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.csh')
-rwxr-xr-xprofile.d/msec.csh2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.d/msec.csh b/profile.d/msec.csh
index 5ff87ab..97473bd 100755
--- a/profile.d/msec.csh
+++ b/profile.d/msec.csh
@@ -25,7 +25,7 @@ endif
# So while modifying the PATH, do not rely on the PATH until unhash is done
if ( ${?ALLOW_CURDIR_IN_PATH} == 'yes' ) then
- if ! { (echo "${PATH}" | /bin/fgrep -q :.) } then
+ if ! { (echo "${PATH}" | /bin/grep -E -q :.) } then
setenv PATH "${PATH}:."
endif
endif