ad_chdir_and_exec

one of the documented procedures in this installation of the ACS
Usage:
ad_chdir_and_exec   dir   arg_list
What it does:
chdirs to $dir and executes the command in $arg_list. We'll probably want to improve this to be thread-safe.
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    cd $dir
    eval exec $arg_list


philg@mit.edu