diff options
author | Patrick Simianer <p@simianer.de> | 2016-07-05 11:01:46 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-07-05 11:01:46 +0200 |
commit | 2b1d7f881c19c4d4b5afae194e02d3300c7675d0 (patch) | |
tree | 5a06ee7de98640a39244b57bb369697176b44ebf /push-rules | |
parent | 69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (diff) |
mv
Diffstat (limited to 'push-rules')
-rwxr-xr-x | push-rules | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/push-rules b/push-rules new file mode 100755 index 0000000..c97ab80 --- /dev/null +++ b/push-rules @@ -0,0 +1,24 @@ +#!/usr/bin/env ruby + +require 'zipf' + +a = ReadFile.readlines_strip ARGV[0] +h = {} +a.each { |i| + h[i] = true +} + +f = ARGV[1].to_f +while line = STDIN.gets + line.strip! + s,weight = line.split + weight = weight.to_f + a,_,target = s.rpartition ":" + _,_,source = a.split(":",3) + if (h[source]) + puts "#{s}\t#{weight*f}" + else + puts line + end +end + |