脚本开发

模块 system

该模块提供了符合 CommonJS System/1.0 规范的系统模块的实现。除了标准之外,还提供了print() 函数。

Functions

Properties


args

表示传递给正在运行的脚本的命令行参数的字符串数组。

Example

>> ringo .\myScript.js foo bar baz 12345
system.args -> ['.\myScript.js', 'foo', 'bar', 'baz', '12345']

env

包含当前系统环境的对象。

Example

{
  USERPROFILE: 'C:\Users\username',
  JAVA_HOME: 'C:\Program Files\Java\jdk\',
  SystemDrive: 'C:',
  Path: '%System%/...',
  PROCESSOR_REVISION: '1a05',
  USERDOMAIN: 'EXAMPLE',
  SESSIONNAME: 'Console',
  TMP: 'C:\Temp',
  PROMPT: '$P$G',
  PROCESSOR_LEVEL: '6',
  LOCALAPPDATA: 'C:\Local',
  ...
}

exit (status)

终止当前进程。

Parameters

Number status

The exit status, defaults to 0.


print ()

用于写入 stdout 的实用程序函数。


stderr

要写入stderr的 TextStream


stdin

一个 TextStream 从标准输入读取。


stdout

要写入标准输出的 TextStream