I wish to accomplish the following:
If I execute "cd production" on bash prompt, I should go into the directory and a message should be displayed "You are in production", so that the user gets warned.
|
|
|
|
|
|
|
Don't do it that way. :) What you really want to know isn't whether the user just got into the 'production' directory via a cd command; what you really want to know is if you're modifying production data, and how you got there (cd, pushd, popd, opening a shell from a parent process in that directory already) is irrelevant. It makes much more sense, then, to have your shell put up an obnoxious warning when you're in the production directory.
Feel free to replace the strings in question with something much more colorful. |
||
|
|
|
|
You can do it by executing the following in the shell context (e.g., .bashrc).
This creates a function then aliases the A better solution, however, may be to detect real paths, since the solution you've asked for will give you a false positive for I would do something like:
which will allow you to configure the top-level danger directories as absolute paths. |
||||||||||||||
|