dcav-stats/update.rb
Christoffer Müller Madsen e5dac03c61 updated xrange
2017-01-26 16:08:01 +01:00

16 lines
423 B
Ruby

users = ["christoffermadsen","jmaa","alexander","jacob"]
shot_dir = "/var/shots/"
log_dir = "./log/"
users.each do |user|
size = `du -B1 #{shot_dir}#{user}/ | awk {'print $1'} | head -n 1`
count = `ls -1 #{shot_dir}#{user}/ | wc -l | head -n 1`
[size,count].each do |x|
x.delete! "\n"
end
output = File.open("#{log_dir}/#{user}.log","a")
output << "#{Time.now.to_i} #{count} #{size}\n"
output.close
end