Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

🐚 Portable Unix shell commands for Node.js

License

NotificationsYou must be signed in to change notification settings

shelljs/shelljs

Repository files navigation

TravisAppVeyorCodecovnpm versionnpm downloads

ShellJS is a portable(Windows/Linux/OS X) implementation of Unix shellcommands on top of the Node.js API. You can use it to eliminate your shellscript's dependency on Unix while still keeping its familiar and powerfulcommands. You can also install it globally so you can run it from outside Nodeprojects - say goodbye to those gnarly Bash scripts!

ShellJS is proudly tested on every node release sincev4!

The project isunit-tested and battle-tested in projects like:

  • Firebug - Firefox's infamous debugger
  • JSHint &ESLint - popular JavaScript linters
  • Zepto - jQuery-compatible JavaScript library for modern browsers
  • Yeoman - Web application stack and development tool
  • Deployd.com - Open source PaaS for quick API backend generation
  • Andmany more.

If you have feedback, suggestions, or need help, feel free to post in ourissuetracker.

Think ShellJS is cool? Check out some related projects in ourWikipage!

Upgrading from an older version? Check out ourbreakingchanges page to seewhat changes to watch out for while upgrading.

Command line use

If you just want cross platform UNIX commands, checkout our new projectshelljs/shx, a utility to exposeshelljs tothe command line.

For example:

$ shx mkdir -p foo$ shx touch foo/bar.txt$ shx rm -rf foo

Plugin API

ShellJS now supports third-party plugins! You can learn more about using pluginsand writing your own ShellJS commands inthewiki.

A quick note about the docs

For documentation on all the latest features, check out ourREADME. To read docs that are consistentwith the latest release, check outthe npmpage orshelljs.org.

Installing

Via npm:

$ npm install [-g] shelljs

Examples

varshell=require('shelljs');if(!shell.which('git')){shell.echo('Sorry, this script requires git');shell.exit(1);}// Copy files to release dirshell.rm('-rf','out/Release');shell.cp('-R','stuff/','out/Release');// Replace macros in each .js fileshell.cd('lib');shell.ls('*.js').forEach(function(file){shell.sed('-i','BUILD_VERSION','v0.1.2',file);shell.sed('-i',/^.*REMOVE_THIS_LINE.*$/,'',file);shell.sed('-i',/.*REPLACE_LINE_WITH_MACRO.*\n/,shell.cat('macro.js'),file);});shell.cd('..');// Run external tool synchronouslyif(shell.exec('git commit -am "Auto-commit"').code!==0){shell.echo('Error: Git commit failed');shell.exit(1);}

Exclude options

If you need to pass a parameter that looks like an option, you can do so like:

shell.grep('--','-v','path/to/file');// Search for "-v", no grep optionsshell.cp('-R','-dir','outdir');// If already using an option, you're done

Global vs. Local

We no longer recommend using a global-import for ShellJS (i.e.require('shelljs/global')). While still supported for convenience, thispollutes the global namespace, and should therefore only be used with caution.

Instead, we recommend a local import (standard for npm packages):

varshell=require('shelljs');shell.echo('hello world');

Command reference

All commands run synchronously, unless otherwise stated.All commands accept standard bash globbing characters (*,?, etc.),compatible with thenodeglob module.

For less-commonly used commands and features, please check out ourwikipage.

cat([options,] file [, file ...])

cat([options,] file_array)

Available options:

  • -n: number all output lines

Examples:

varstr=cat('file*.txt');varstr=cat('file1','file2');varstr=cat(['file1','file2']);// same as above

Returns a string containing the given file, or a concatenated stringcontaining the files if more than one file is given (a new line character isintroduced between each file).

cd([dir])

Changes to directorydir for the duration of the script. Changes to homedirectory if no argument is supplied.

chmod([options,] octal_mode || octal_string, file)

chmod([options,] symbolic_mode, file)

Available options:

  • -v: output a diagnostic for every file processed
  • -c: like verbose, but report only when a change is made
  • -R: change files and directories recursively

Examples:

chmod(755,'/Users/brandon');chmod('755','/Users/brandon');// same as abovechmod('u+x','/Users/brandon');chmod('-R','a-w','/Users/brandon');

Alters the permissions of a file or directory by either specifying theabsolute permissions in octal form or expressing the changes in symbols.This command tries to mimic the POSIX behavior as much as possible.Notable exceptions:

  • In symbolic modes,a-r and-r are identical. No consideration isgiven to theumask.
  • There is no "quiet" option, since default behavior is to run silent.

cp([options,] source [, source ...], dest)

cp([options,] source_array, dest)

Available options:

  • -f: force (default behavior)
  • -n: no-clobber
  • -u: only copy ifsource is newer thandest
  • -r,-R: recursive
  • -L: follow symlinks
  • -P: don't follow symlinks

Examples:

cp('file1','dir1');cp('-R','path/to/dir/','~/newCopy/');cp('-Rf','/tmp/*','/usr/local/*','/home/tmp');cp('-Rf',['/tmp/*','/usr/local/*'],'/home/tmp');// same as above

Copies files.

pushd([options,] [dir | '-N' | '+N'])

Available options:

  • -n: Suppresses the normal change of directory when adding directories to the stack, so that only the stack is manipulated.
  • -q: Supresses output to the console.

Arguments:

  • dir: Sets the current working directory to the top of the stack, then executes the equivalent ofcd dir.
  • +N: Brings the Nth directory (counting from the left of the list printed by dirs, starting with zero) to the top of the list by rotating the stack.
  • -N: Brings the Nth directory (counting from the right of the list printed by dirs, starting with zero) to the top of the list by rotating the stack.

Examples:

// process.cwd() === '/usr'pushd('/etc');// Returns /etc /usrpushd('+1');// Returns /usr /etc

Save the current directory on the top of the directory stack and thencd todir. With no arguments,pushd exchanges the top two directories. Returns an array of paths in the stack.

popd([options,] ['-N' | '+N'])

Available options:

  • -n: Suppress the normal directory change when removing directories from the stack, so that only the stack is manipulated.
  • -q: Supresses output to the console.

Arguments:

  • +N: Removes the Nth directory (counting from the left of the list printed by dirs), starting with zero.
  • -N: Removes the Nth directory (counting from the right of the list printed by dirs), starting with zero.

Examples:

echo(process.cwd());// '/usr'pushd('/etc');// '/etc /usr'echo(process.cwd());// '/etc'popd();// '/usr'echo(process.cwd());// '/usr'

When no arguments are given,popd removes the top directory from the stack and performs acd to the new top directory. The elements are numbered from 0, starting at the first directory listed with dirs (i.e.,popd is equivalent topopd +0). Returns an array of paths in the stack.

dirs([options | '+N' | '-N'])

Available options:

  • -c: Clears the directory stack by deleting all of the elements.
  • -q: Supresses output to the console.

Arguments:

  • +N: Displays the Nth directory (counting from the left of the list printed by dirs when invoked without options), starting with zero.
  • -N: Displays the Nth directory (counting from the right of the list printed by dirs when invoked without options), starting with zero.

Display the list of currently remembered directories. Returns an array of paths in the stack, or a single path if+N or-N was specified.

See also:pushd,popd

echo([options,] string [, string ...])

Available options:

  • -e: interpret backslash escapes (default)
  • -n: remove trailing newline from output

Examples:

echo('hello world');varstr=echo('hello world');echo('-n','no newline at end');

Printsstring to stdout, and returns string with additional utility methodslike.to().

exec(command [, options] [, callback])

Available options:

  • async: Asynchronous execution. If a callback is provided, it will be set totrue, regardless of the passed value (default:false).
  • silent: Do not echo program output to console (default:false).
  • encoding: Character encoding to use. Affects the values returned to stdout and stderr, andwhat is written to stdout and stderr when not in silent mode (default:'utf8').
  • and any option available to Node.js'schild_process.exec()

Examples:

varversion=exec('node --version',{silent:true}).stdout;varchild=exec('some_long_running_process',{async:true});child.stdout.on('data',function(data){/* ... do something with data ... */});exec('some_long_running_process',function(code,stdout,stderr){console.log('Exit code:',code);console.log('Program output:',stdout);console.log('Program stderr:',stderr);});

Executes the givencommandsynchronously, unless otherwise specified. When in synchronousmode, this returns aShellString (compatible with ShellJS v0.6.x, which returns an objectof the form{ code:..., stdout:... , stderr:... }). Otherwise, this returns the child processobject, and thecallback receives the arguments(code, stdout, stderr).

Not seeing the behavior you want?exec() runs everything throughshby default (orcmd.exe on Windows), which differs frombash. If youneed bash-specific behavior, try out the{shell: 'path/to/bash'} option.

find(path [, path ...])

find(path_array)

Examples:

find('src','lib');find(['src','lib']);// same as abovefind('.').filter(function(file){returnfile.match(/\.js$/);});

Returns array of all files (however deep) in the given paths.

The main difference fromls('-R', path) is that the resulting file namesinclude the base directories (e.g.,lib/resources/file1 instead of justfile1).

grep([options,] regex_filter, file [, file ...])

grep([options,] regex_filter, file_array)

Available options:

  • -v: Invertregex_filter (only print non-matching lines).
  • -l: Print only filenames of matching files.
  • -i: Ignore case.

Examples:

grep('-v','GLOBAL_VARIABLE','*.js');grep('GLOBAL_VARIABLE','*.js');

Reads input string from given files and returns a string containing all lines of thefile that match the givenregex_filter.

head([{'-n': <num>},] file [, file ...])

head([{'-n': <num>},] file_array)

Available options:

  • -n <num>: Show the first<num> lines of the files

Examples:

varstr=head({'-n':1},'file*.txt');varstr=head('file1','file2');varstr=head(['file1','file2']);// same as above

Read the start of a file.

ln([options,] source, dest)

Available options:

  • -s: symlink
  • -f: force

Examples:

ln('file','newlink');ln('-sf','file','existing');

Linkssource todest. Use-f to force the link, shoulddest already exist.

ls([options,] [path, ...])

ls([options,] path_array)

Available options:

  • -R: recursive
  • -A: all files (include files beginning with., except for. and..)
  • -L: follow symlinks
  • -d: list directories themselves, not their contents
  • -l: list objects representing each file, each with fields containingls -l output fields. Seefs.Statsfor more info

Examples:

ls('projs/*.js');ls('-R','/users/me','/tmp');ls('-R',['/users/me','/tmp']);// same as abovels('-l','file.txt');// { name: 'file.txt', mode: 33188, nlink: 1, ...}

Returns array of files in the givenpath, or files inthe current directory if nopath is provided.

mkdir([options,] dir [, dir ...])

mkdir([options,] dir_array)

Available options:

  • -p: full path (and create intermediate directories, if necessary)

Examples:

mkdir('-p','/tmp/a/b/c/d','/tmp/e/f/g');mkdir('-p',['/tmp/a/b/c/d','/tmp/e/f/g']);// same as above

Creates directories.

mv([options ,] source [, source ...], dest')

mv([options ,] source_array, dest')

Available options:

  • -f: force (default behavior)
  • -n: no-clobber

Examples:

mv('-n','file','dir/');mv('file1','file2','dir/');mv(['file1','file2'],'dir/');// same as above

Movessource file(s) todest.

pwd()

Returns the current directory.

rm([options,] file [, file ...])

rm([options,] file_array)

Available options:

  • -f: force
  • -r, -R: recursive

Examples:

rm('-rf','/tmp/*');rm('some_file.txt','another_file.txt');rm(['some_file.txt','another_file.txt']);// same as above

Removes files.

sed([options,] search_regex, replacement, file [, file ...])

sed([options,] search_regex, replacement, file_array)

Available options:

  • -i: Replace contents offile in-place.Note that no backups will be created!

Examples:

sed('-i','PROGRAM_VERSION','v0.1.3','source.js');sed(/.*DELETE_THIS_LINE.*\n/,'','source.js');

Reads an input string fromfiles, and performs a JavaScriptreplace() on the inputusing the givensearch_regex andreplacement string or function. Returns the new string after replacement.

Note:

Like unixsed, ShellJSsed supports capture groups. Capture groups are specifiedusing the$n syntax:

sed(/(\w+)\s(\w+)/,'$2, $1','file.txt');

set(options)

Available options:

  • +/-e: exit upon error (config.fatal)
  • +/-v: verbose: show all commands (config.verbose)
  • +/-f: disable filename expansion (globbing)

Examples:

set('-e');// exit upon first errorset('+e');// this undoes a "set('-e')"

Sets global configuration variables.

sort([options,] file [, file ...])

sort([options,] file_array)

Available options:

  • -r: Reverse the results
  • -n: Compare according to numerical value

Examples:

sort('foo.txt','bar.txt');sort('-r','foo.txt');

Return the contents of thefiles, sorted line-by-line. Sorting multiplefiles mixes their content (just as unixsort does).

tail([{'-n': <num>},] file [, file ...])

tail([{'-n': <num>},] file_array)

Available options:

  • -n <num>: Show the last<num> lines offiles

Examples:

varstr=tail({'-n':1},'file*.txt');varstr=tail('file1','file2');varstr=tail(['file1','file2']);// same as above

Read the end of afile.

tempdir()

Examples:

vartmp=tempdir();// "/tmp" for most *nix platforms

Searches and returns string containing a writeable, platform-dependent temporary directory.Follows Python'stempfile algorithm.

test(expression)

Available expression primaries:

  • '-b', 'path': true if path is a block device
  • '-c', 'path': true if path is a character device
  • '-d', 'path': true if path is a directory
  • '-e', 'path': true if path exists
  • '-f', 'path': true if path is a regular file
  • '-L', 'path': true if path is a symbolic link
  • '-p', 'path': true if path is a pipe (FIFO)
  • '-S', 'path': true if path is a socket

Examples:

if(test('-d',path)){/* do something with dir */};if(!test('-f',path))continue;// skip if it's a regular file

Evaluatesexpression using the available primaries and returns corresponding value.

ShellString.prototype.to(file)

Examples:

cat('input.txt').to('output.txt');

Analogous to the redirection operator> in Unix, but works withShellStrings (such as those returned bycat,grep, etc.).Like Unixredirections,to() will overwrite any existing file!

ShellString.prototype.toEnd(file)

Examples:

cat('input.txt').toEnd('output.txt');

Analogous to the redirect-and-append operator>> in Unix, but works withShellStrings (such as those returned bycat,grep, etc.).

touch([options,] file [, file ...])

touch([options,] file_array)

Available options:

  • -a: Change only the access time
  • -c: Do not create any files
  • -m: Change only the modification time
  • -d DATE: ParseDATE and use it instead of current time
  • -r FILE: UseFILE's times instead of current time

Examples:

touch('source.js');touch('-c','/path/to/some/dir/source.js');touch({'-r':FILE},'/path/to/some/dir/source.js');

Update the access and modification times of eachFILE to the current time.AFILE argument that does not exist is created empty, unless-c is supplied.This is a partial implementation oftouch(1).

uniq([options,] [input, [output]])

Available options:

  • -i: Ignore case while comparing
  • -c: Prefix lines by the number of occurrences
  • -d: Only print duplicate lines, one for each group of identical lines

Examples:

uniq('foo.txt');uniq('-i','foo.txt');uniq('-cd','foo.txt','bar.txt');

Filter adjacent matching lines frominput.

which(command)

Examples:

varnodeExec=which('node');

Searches forcommand in the system'sPATH. On Windows, this uses thePATHEXT variable to append the extension if it's not already executable.Returns string containing the absolute path tocommand.

exit(code)

Exits the current process with the given exitcode.

error()

Tests if error occurred in the last command. Returns a truthy value if anerror returned, or a falsy value otherwise.

Note: do not rely on thereturn value to be an error message. If you need the last error message, usethe.stderr attribute from the last command's return value instead.

ShellString(str)

Examples:

varfoo=ShellString('hello world');

Turns a regular string into a string-like object similar to what eachcommand returns. This has special methods, like.to() and.toEnd().

env['VAR_NAME']

Object containing environment variables (both getter and setter). Shortcuttoprocess.env.

Pipes

Examples:

grep('foo','file1.txt','file2.txt').sed(/o/g,'a').to('output.txt');echo('files with o\'s in the name:\n'+ls().grep('o'));cat('test.js').exec('node');// pipe to exec() call

Commands can send their output to another command in a pipe-like fashion.sed,grep,cat,exec,to, andtoEnd can appear on the right-handside of a pipe. Pipes can be chained.

Configuration

config.silent

Example:

varsh=require('shelljs');varsilentState=sh.config.silent;// save old silent statesh.config.silent=true;/* ... */sh.config.silent=silentState;// restore old silent state

Suppresses all command output iftrue, except forecho() calls.Default isfalse.

config.fatal

Example:

require('shelljs/global');config.fatal=true;// or set('-e');cp('this_file_does_not_exist','/dev/null');// throws Error here/* more commands... */

Iftrue, the script will throw a Javascript error when any shell.jscommand encounters an error. Default isfalse. This is analogous toBash'sset -e.

config.verbose

Example:

config.verbose=true;// or set('-v');cd('dir/');rm('-rf','foo.txt','bar.txt');exec('echo hello');

Will print each command as follows:

cd dir/rm -rf foo.txt bar.txtexec echo hello

config.globOptions

Example:

config.globOptions={nodir:true};

Use this value for calls toglob.sync() instead of the default options.

config.reset()

Example:

varshell=require('shelljs');// Make changes to shell.config, and do stuff.../* ... */shell.config.reset();// reset to original state// Do more stuff, but with original settings/* ... */

Resetshell.config to the defaults:

{fatal:false,globOptions:{},maxdepth:255,noglob:false,silent:false,verbose:false,}

Team

Nate FischerBrandon Freitag
Nate FischerBrandon Freitag

About

🐚 Portable Unix shell commands for Node.js

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors84


[8]ページ先頭

©2009-2025 Movatter.jp