Skip to content

Instantly share code, notes, and snippets.

@ptasker
Created November 29, 2017 19:19
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 ptasker/f2286ef990fd62028084b9064457c1cf to your computer and use it in GitHub Desktop.
Save ptasker/f2286ef990fd62028084b9064457c1cf to your computer and use it in GitHub Desktop.
Shell JS example
const shell = require( 'shelljs' );
shell.echo(
shell.cat('./src/wp-migrate-db-pro/wp-migrate-db-pro.php').grep( /.*\['version'] = '(.*)';/ )
.replace(/.*\['version'] = |'|;|\./g, '')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment