ShellJS - にほんご。

echo()

更新日: 2018-09-11

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

利用可能オプション

-e
エスケープシーケンスを解釈します。(初期値)
-n
出力時に末尾の改行を削除します。

指定方法

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

文字列をstroutに出力し、拡張ユーティリティ関数の.to()のように文字列を返します。


使用例

文字列を表示します。

JavaScript
var sh = require('shelljs');
sh.echo('文字列を表示します。');
結果
$ node sample.js
文字列を表示します。


© 2012 Artur Adib Released under the BSD License. See LICENSE file for details.

このコンテンツはArtur Adib(arturadib)によるShellJSドキュメントを翻訳/改変したものです。