You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
592 B
Plaintext
19 lines
592 B
Plaintext
*! comfirmdir Version 1.1 dan.blanchette@duke.edu 22Jan2009
|
|
*! Center of Entrepreneurship and Innovation Duke University's Fuqua School of Business
|
|
* confirmdir Version 1.1 dan_blanchette@unc.edu 17Jan2008
|
|
* research computing, unc-ch
|
|
* - made it handle long directory names
|
|
** confirmdir Version 1.0 dan_blanchette@unc.edu 05Oct2003
|
|
** the carolina population center, unc-ch
|
|
|
|
program define confirmdir, rclass
|
|
version 8
|
|
|
|
local cwd `"`c(pwd)'"'
|
|
quietly capture cd `"`1'"'
|
|
local confirmdir=_rc
|
|
quietly cd `"`cwd'"'
|
|
return local confirmdir `"`confirmdir'"'
|
|
|
|
end
|