pushd function

void pushd(
  1. String path
)

pushd

Implementation

void pushd(String path) {
  _cwdStack.push(getCwd());
  setCwd(path);
}