ShellJS - にほんご。

tail()

更新日: 2018-09-11

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

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

利用可能オプション

-n
ファイルの末尾行を表示します。

指定方法

var str = tail({'-n': 1}, 'file*.txt');
var str = tail('file1', 'file2');
var str = tail(['file1', 'file2']); // 上記と同様

ファイルの末尾を読み込みます。


使用例

ファイルの末尾3行を表示します。

JavaScript
var sh = require('shelljs');
var str = sh.tail({'-n': 3}, 'shell1.txt');
sh.echo(str);
txt
aaaaa
bbbbb
ccccc
ddddd
eeeee
結果
$ node sample.js
ccccc
ddddd
eeeee


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

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