nodejs命令行执行时带参数
nodejs命令行执行时带参数
今天项目里突然想在初始化时跑一些数据,于是想起以前在python时可以在命令行里带参数运行命令的,经过百度后确实也是有的。
** process.argv**
//想获得命令行后面的几个参数值
/*
//node arg.js arg1 arg2 arg3, 想取得这三个参数
//即可以程序中用:
var args = process.argv.splice(2)
//process是一个全局对象,argv返回的是一组包含命令行参数的数组。
//第一项为”node”,第二项为执行的js的完整路径,后面是附加在命令行后的参数
*/

代码如下:
var arguments = process.argv.splice(2);
console.log('所传递的参数是:', arguments);
//////////////////////////
// print process.argv
process.argv.forEach(function (val, index, array) {
console.log(index + ': ' + val);
});
process.argv is an array containing the command line arguments. The first element will be 'node', the second element will be the name of the JavaScript file. The next elements will be any additional command line arguments.
1人点赞
shelljs操作目录文件
Nodejs使用ShellJS操作目录文件
安装
npm install [-g] shelljs
示例
var shell = require('shelljs');
if (!shell.which('git')) {
shell.echo('Sorry, this script requires git');
shell.exit(1);
}
// 复制文件到输出目录
shell.rm('-rf', 'out/Release');//删除
shell.cp('-R', 'stuff/', 'out/Release');//复制
// 目录切换
shell.cd('lib');//切到某录
shell.cd('..');//切到上级
//内容替换
// Replace macros in each .js file
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);
});
// 异步运行扩展工具
if (shell.exec('git commit -am "Auto-commit"').code !== 0) {
shell.echo('Error: Git commit failed');//输出内容
shell.exit(1);//退出
}
接口
cat(file [, file ...])
cat(file_array)
查看内容
Examples:
var str = cat('file*.txt');
var str = cat('file1', 'file2');
var str = cat(['file1', 'file2']); // same as above
Returns a string containing the given file, or a concatenated string
containing the files if more than one file is given (a new line character is
introduced between each file).
cd([dir])
切换目录
Changes to directory dir for the duration of the script. Changes to home directory 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 above
chmod('u+x', '/Users/brandon');
chmod('-R', 'a-w', '/Users/brandon');
Alters the permissions of a file or directory by either specifying the
absolute 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 is
given to the umask. - 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 if source is newer than dest-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.
Arguments:
dir: Makes the current working directory be the top of the stack, and 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 /usr
pushd('+1'); // Returns /usr /etc
Save the current directory on the top of the directory stack and then cd to dir. With no arguments, pushd exchanges the top two directories. Returns an array of paths in the stack.
popd([options,] ['-N' | '+N'])
Available options:
-n: Suppresses the normal change of directory when removing directories from the stack, so that only the stack is manipulated.
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 a cd to the new top directory. The elements are numbered from 0 starting at the first directory listed with dirs; i.e., popd is equivalent to popd +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.
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)
Examples:
echo('hello world');
var str = echo('hello world');
Prints string to stdout, and returns string with additional utility methods
like .to().
exec(command [, options] [, callback])
Available options (all false by default):
async: Asynchronous execution. If a callback is provided, it will be set totrue, regardless of the passed value.silent: Do not echo program output to console.- and any option available to Node.js's
child_process.exec()
Examples:
var version = exec('node --version', {silent:true}).stdout;
var child = 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 given command synchronously, unless otherwise specified. When in synchronous
mode, this returns a ShellString (compatible with ShellJS v0.6.x, which returns an object
of the form { code:..., stdout:... , stderr:... }). Otherwise, this returns the child process
object, and the callback gets the arguments (code, stdout, stderr).
Not seeing the behavior you want? exec() runs everything through sh
by default (or cmd.exe on Windows), which differs from bash. If you
need bash-specific behavior, try out the {shell: 'path/to/bash'} option.
Note: For long-lived processes, it's best to run exec() asynchronously as
the current synchronous implementation uses a lot of CPU. This should be getting
fixed soon.
find(path [, path ...])
find(path_array)
查找文件
Examples:
find('src', 'lib');
find(['src', 'lib']); // same as above
find('.').filter(function(file) { return file.match(/\.js$/); });
Returns array of all files (however deep) in the given paths.
The main difference from ls('-R', path) is that the resulting file names
include the base directories, e.g. lib/resources/file1 instead of just file1.
grep([options,] regex_filter, file [, file ...])
grep([options,] regex_filter, file_array)
查找内容
Available options:
-v: Inverse the sense of the regex and print the lines not matching the criteria.-l: Print only filenames of matching files
Examples:
grep('-v', 'GLOBAL_VARIABLE', '*.js');
grep('GLOBAL_VARIABLE', '*.js');
Reads input string from given files and returns a string containing all lines of the
file that match the given regex_filter.
head([{'-n': <num>},] file [, file ...])
head([{'-n': <num>},] file_array)
Available options:
显示内容
-n <num>: Show the first<num>lines of the files
Examples:
var str = head({'-n': 1}, 'file*.txt');
var str = head('file1', 'file2');
var str = 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');
Links source to dest. Use -f to force the link, should dest 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 -loutput fields. See
fs.Stats
for more info
Examples:
ls('projs/*.js');
ls('-R', '/users/me', '/tmp');
ls('-R', ['/users/me', '/tmp']); // same as above
ls('-l', 'file.txt'); // { name: 'file.txt', mode: 33188, nlink: 1, ...}
Returns array of files in the given path, or in current directory if no path provided.
mkdir([options,] dir [, dir ...])
mkdir([options,] dir_array)
创建目录
Available options:
-p: full path (will create intermediate dirs 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
Moves files.
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 of 'file' 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 from files and performs a JavaScript replace() on the input
using the given search regex and replacement string or function. Returns the new string after replacement.
Note:
Like unix sed, ShellJS sed supports capture groups. Capture groups are specified
using 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 error
set('+e'); // this undoes a "set('-e')"
Sets global configuration variables
sort([options,] file [, file ...])
sort([options,] file_array)
内容排序
Available options:
-r: Reverse the result of comparisons-n: Compare according to numerical value
Examples:
sort('foo.txt', 'bar.txt');
sort('-r', 'foo.txt');
Return the contents of the files, sorted line-by-line. Sorting multiple
files mixes their content, just like unix sort does.
tail([{'-n': <num>},] file [, file ...])
tail([{'-n': <num>},] file_array)
Available options:
-n <num>: Show the last<num>lines of the files
Examples:
查看内容
var str = tail({'-n': 1}, 'file*.txt');
var str = tail('file1', 'file2');
var str = tail(['file1', 'file2']); // same as above
Read the end of a file.
tempdir()
Examples:
var tmp = tempdir(); // "/tmp" for most *nix platforms
Searches and returns string containing a writeable, platform-dependent temporary directory.
Follows Python's tempfile 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
Evaluates expression 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 with
ShellStrings (such as those returned by cat, grep, etc). Like Unix
redirections, 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 with
ShellStrings (such as those returned by cat, 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: Parse DATE and use it instead of current time-r FILE: Use FILE'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 each FILE to the current time.
A FILE argument that does not exist is created empty, unless -c is supplied.
This is a partial implementation of touch(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 from input
which(command)
执行命令
Examples:
var nodeExec = which('node');
Searches for command in the system's PATH. On Windows, this uses thePATHEXT variable to append the extension if it's not already executable.
Returns string containing the absolute path to the command.
exit(code)
退出进程
Exits the current process with the given exit code.
error()
Tests if error occurred in the last command. Returns a truthy value if an
error returned and a falsy value otherwise.
Note: do not rely on the
return value to be an error message. If you need the last error message, use
the .stderr attribute from the last command's return value instead.
ShellString(str)
Examples:
var foo = ShellString('hello world');
Turns a regular string into a string-like object similar to what each
command returns. This has special methods, like .to() and .toEnd()
env['VAR_NAME']
获取/设置变量
Object containing environment variables (both getter and setter). Shortcut
to process.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, and toEnd can appear on the right-hand
side of a pipe. Pipes can be chained.
Configuration
config.silent
Example:
var sh = require('shelljs');
var silentState = sh.config.silent; // save old silent state
sh.config.silent = true;
/* ... */
sh.config.silent = silentState; // restore old silent state
Suppresses all command output if true, except for echo() calls.
Default is false.
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... */
If true the script will throw a Javascript error when any shell.js
command encounters an error. Default is false. This is analogous to
Bash's set -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.txt
exec echo hello
config.globOptions
Example:
config.globOptions = {nodir: true};
Use this value for calls to glob.sync() instead of the default options.
config.reset()
重置全局设置
Example:
var shell = require('shelljs');
// Make changes to shell.config, and do stuff...
/* ... */
shell.config.reset(); // reset to original state
// Do more stuff, but with original settings
/* ... */
Reset shell.config to the defaults:
{
fatal: false,
globOptions: {},
maxdepth: 255,
noglob: false,
silent: false,
verbose: false,
}
0人点赞
nodejs命令行执行时带参数的更多相关文章
- mysql命令行执行时不输出列名(字段名),直接显示字段对应的数值
执行命令时加个-N参数就可以了 -N, –skip-column-names 比如说:mysql -uroot -p1234546 -N -e “select * from user;”
- jmeter summariser(命令行执行时的输出) 、查看结果树等结果中文乱码
在使用jmeter测试时,如果你的sampler名字为中文.或者输出的结果信息有中文,你会发现它们都是乱码,非常蛋碎!原因是: jmeter的默认编码为:ISO-8859-1, 解决方案就是要修改它 ...
- Python读取UTF-8编码文件并使用命令行执行时输出结果的问题
最近参加了由CCF举办的数据挖掘比赛,主办方提供了csv格式的数据文件,由于中文显示乱码的问题,我先用txt文本编辑器将编码改为utf-8格式,但是在读取文件并输出读取结果时发生了问题,代码如下: # ...
- mysql命令行执行时不输出列名(字段名)
-N 即可 如:mysql -N -e "select * from test" 摘自:http://blog.csdn.net/eroswang/article/details/ ...
- jmeter命令行执行脚本_动态参数设置
从04月换公司开始,就没静下来心来学习,其中发生了比较多的事情吧,不过不管如何,没坚持学习还是因为懒.本周交接完,下周去入职新公司,该静下心来学点什么了. ---------------------- ...
- 命令行执行jenkins,构建job(可传递参数)
背景| 组内做UI测试,需要每天晚上执行一遍jenkins任务,jenkins任务本身是参数化构建的.但是因为jenkins本身的定时执行没有办法指定特殊的参数,所以考虑使用命令行方式启动jenkin ...
- CAD执行一个带参数的命令(com接口VB语言)
主要用到函数说明: MxDrawXCustomFunction::Mx_SendStringToExecute 执行一个带参数的命令.详细说明如下: 参数 说明 CString sCmaName 命令 ...
- hive -help hive命令行执行sql参数
在shell命令行执行 hive -help 结果如下: -d,--define <key=value> Variable substitution to apply to Hive co ...
- gocommand:一个跨平台的golang命令行执行package
最近在做一个项目的时候,需要使用golang来调用操作系统中的命令行,来执行shell命令或者直接调用第三方程序,这其中自然就用到了golang自带的exec.Command. 但是如果直接使用原生e ...
随机推荐
- Maven基础。
---恢复内容开始--- Maven: 1.概念. * maven 是一个项目管理工具. * maven的作用. 1.jar包.依赖管理.将jar包放在jar包仓库(pom.xml),不需要每个项目都 ...
- 【漏洞复现】Apache Solr via Velocity template远程代码执行
0x01 概述 Solr简介 Apache Solr 是一个开源的企业级搜索服务器.Solr 使用 Java 语言开发,主要基于 HTTP 和 Apache Lucene 实现.Apache Solr ...
- C# 控制台定时器
C# 定时器 关于C#中timer类 在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System. ...
- FFMPEG 命令行工具- ffplay
ffplay 简介 ffplay是ffmpeg工程中提供的播放器,功能相当的强大,凡是ffmpeg支持的视音频格式它基本上都支持.甚至连VLC不支持的一些流媒体都可以播放,但是它的缺点是其不是图形化界 ...
- FRP 中文文档
https://github.com/fatedier/frp/blob/master/README_zh.md README | 中文文档 frp 是一个可用于内网穿透的高性能的反向代理应用,支持 ...
- Django如何与ajax通信
示例一 文件结构 假设你已经创建好了一个Django项目和一个App,部分结构如下: mysite myapp |___views.py |___models.py |___forms.py |___ ...
- Selenium_webdriver+java通过读取firefox、chrome的cookie文件,实现自动登录
遇到过很多问题,通过查资料得出的最终结果!
- 项目Beta冲刺(团队)——总结篇
项目Beta冲刺(团队)--总结篇 格式描述 课程名称:软件工程1916|W(福州大学) 作业要求:项目Beta冲刺(团队) 团队名称:为了交项目干杯 作业目标:Beta冲刺总结 团队信息 队员学号 ...
- C++传递不定参函数
定义不定参数函数,要用到下面这些宏: va_start(ap, farg): 初始化一个va_list变量ap,farg是第一个形参 va_arg(ap, type): 获取(下)一个type类型的参 ...
- diffy 方便的bug 以及流量测试系统
diffy 是twiiter 开源的流量以及bug 查找系统 参考使用图 几点说明 使用diffy我们需要三个角色 candidate instance 候选实例,运行新的代码 primary ins ...