pwd 94 B

12345678910
  1. #!/usr/bin/env bash
  2. set -e
  3. set -u
  4. set -o pipefail
  5. pwd() {
  6. echo "/some/path/over/here"
  7. }