Skip to content

Instantly share code, notes, and snippets.

@jkup
Created March 28, 2016 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkup/ce7f7f66a1788a54ea62 to your computer and use it in GitHub Desktop.
Save jkup/ce7f7f66a1788a54ea62 to your computer and use it in GitHub Desktop.
Change Directory
#!/usr/bin/env node
const process = require('process')
process.chdir('/foo')
console.log(process.cwd()) // This logs foo
// but then if I run this my terminal doesn't change
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment