Skip to content

Instantly share code, notes, and snippets.

@fowlmouth
Created September 3, 2011 04:46
Show Gist options
  • Save fowlmouth/1190582 to your computer and use it in GitHub Desktop.
Save fowlmouth/1190582 to your computer and use it in GitHub Desktop.
class Dir
@dstack = []
def self.push d
@dstack = [pwd] if @dstack.empty?
chdir @dstack.push(d).last
@dstack
end
def self.pop
@dstack.pop
chdir @dstack.last unless @dstack.empty?
@dstack
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment