popd -> ()[permalink][rdoc][edit]popdir -> ()- 
ディレクトリスタックからポップし, それをカレントディレクトリにする.
動作例
require 'shell' Shell.verbose = false sh = Shell.new sh.pushd("/tmp") p sh.cwd #=> "/tmp" sh.pushd("/usr") p sh.cwd #=> "/usr" sh.popd p sh.cwd #=> "/tmp" 
popd -> ()[permalink][rdoc][edit]popdir -> ()ディレクトリスタックからポップし, それをカレントディレクトリにする.
動作例
require 'shell'
Shell.verbose = false
sh = Shell.new
sh.pushd("/tmp")
p sh.cwd #=> "/tmp"
sh.pushd("/usr")
p sh.cwd #=> "/usr"
sh.popd
p sh.cwd #=> "/tmp"