view general/popd.m @ 44:3cedfd4549ef

Code added since initial check in.
author samer
date Tue, 13 Jan 2015 14:03:17 +0000
parents e44f49929e56
children
line wrap: on
line source
function D=popd
% popd:	Pop directory off stack
% dirname=popd:	pop and return directory name
% popd:				pop directory and cd into it.
global DirStack
d=DirStack{1};
DirStack=DirStack{2};
if nargout<1, cd(d); else D=d; end