method
popdir
v1_8_6_287 -
Show latest stable
- Class:
Shell
popdir()public
No documentation available.
# File lib/shell.rb, line 189
def popdir
if pop = @dir_stack.pop
chdir pop
notify "dir stack: [#{@dir_stack.join ', '}]"
self
else
Shell.Fail DirStackEmpty
end
end