You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ondir is a small program to automate tasks specific to certain directories. It
works by executing scripts in directories when you enter and leave them.
Scripts in the doc subdirectory show how to automate this when using either
BASH or TCSH.
Getting Started
Add scripts.sh or scripts.tcsh to your startup scripts for BASH or TCSH,
respectively.
Restart your shell.
Add an entry to your ~/.ondirrc such as those described below.
Change into the corresponding path.
Check for success.
Details
An example of ondirs usefulness is when editing web pages. I have a umask of 077
by default, but when creating web pages in ~/public_html the web content has
to be readable by the user the web server runs as. By adding a path section for
this directory to my ~/.ondirrc, and corresponding enter and leave sub-sections,
any scripts in the enter/leave sub-sections are executed when I enter and leave
the directory, respectively. Here is how the entry in my ~/.ondirrc would look:
enter /home/athomas/public_html
umask 022
leave /home/athomas/public_html
umask 077
And that's all it does. Simple, but effective.
ondir takes one parameter, the directory you are leaving.
Note that these scripts will be executed when you pass THROUGH the directory
as well. Using the preceding example, typing "cd ~/public_html/mywebpage" will
execute the 'enter' in ~/public_html. The reverse is also true: when leaving
a path, all 'leave' scripts in the intermediate directories are executed.
A more useful example
Ondir is particularly useful with virtualenv. The following config will
automatically activate virtualenv's when you change into a directory and
deactivate when you move out:
enter ~/Projects/([^/]+)
if [ -r .venv ]; then
. ./.venv/bin/activate
fi
leave ~/Projects/([^/]+)
deactivate > /dev/null 2>&1
About
OnDir is a small program to automate tasks specific to certain directories