summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-01-29 19:14:08 +0100
committerPatrick Simianer <p@simianer.de>2014-01-29 19:14:08 +0100
commit68acbb9a0c7967cb90a7e3756fc94fdd8a73d154 (patch)
tree3b445131dcb203e94473ae1d8aa82a1798585276 /sample
parent49158e721bfaf6423dca9fc633873218f691c83a (diff)
make use of nlp_ruby, LICENSE
Diffstat (limited to 'sample')
-rwxr-xr-xsample9
1 files changed, 1 insertions, 8 deletions
diff --git a/sample b/sample
index b4706c6..e693d5c 100755
--- a/sample
+++ b/sample
@@ -2,23 +2,16 @@
require 'trollop'
-
STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'
-def usage
- STDERR.write "./sample --size <n> < <line separated data>\n"
- exit 1
-end
-usage if ARGV.size!=4
opts = Trollop::options do
+ banner "sample --size <n> < <line separated data>"
opt :size, "Sample n% (percentage).", :type => :int
end
-
prng = Random.new(Random.new_seed)
-
while line = STDIN.gets
STDOUT.write line if prng.rand(1..opts[:size])==0
end