summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-12-23 13:54:36 +0100
committerPatrick Simianer <p@simianer.de>2015-12-23 13:54:36 +0100
commit69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (patch)
tree78d6acc325b1036a20dd8fac5c1b7bcaf124d7e3
parent7e129829d3b2f9fdff469800600845591ef78ccf (diff)
push_rules: push rule weights
-rwxr-xr-xpush_rules24
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
+