With /bin/bash, how would I detect if a user has a specific directory in their $PATH variable?
For example
if [ -p "$HOME/bin" ]; then
echo "Your path is missing ~/bin, you might want to add it."
else
echo "Your path is correctly set"
fi
|
With For example
|
|||
|
|
|
Something really simple and naive:
Where whatever is what you are searching for. Instead of Limitations include:
Or using a perl one-liner:
That still has the limitation that it won't do any shell expansions, but it doesn't fail if a substring matches. (The above matches " |
|||||
|
|
Using
Note that adding colons before both the expansion of $PATH and the path to search for solves the substring match issue; double-quoting the path avoids trouble with metacharacters. |
|||||||||||
|
|
Here's how to do it without
The key here is to make the colons and wildcards optional using the
This is another way to do it using the match operator (
|
||||
|
|