From 5d9c04702f0db9b983be18528becb050224d5494 Mon Sep 17 00:00:00 2001 From: antham Date: Thu, 21 May 2015 19:55:59 +0200 Subject: [PATCH] fix wrong command line argument --- bin/nip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nip b/bin/nip index 2acc498..6de41ba 100644 --- a/bin/nip +++ b/bin/nip @@ -10,7 +10,7 @@ program .usage('[js-code] ') .option('-f, --file', 'javascript file containing the js-code') .option('-1, --first-line-only', 'process whole file at once, not line by line') - .option('-n, --line-splitter [splitter]', 'line spliter regex or string', '/\\r?\\n/') + .option('-s, --line-splitter [splitter]', 'line spliter regex or string', '/\\r?\\n/') .option('-n, --line-joiner [joiner]', 'string to join lines together with', '\n') .option('-c, --col-splitter [spliter]', 'column splitter regex or string', '\\s+') ;