19 lines
407 B
Ruby
19 lines
407 B
Ruby
load 'config.rb'
|
|
|
|
users = USERNAMES
|
|
shot_dir = SHOT_DIR
|
|
log_dir = LOG_DIR
|
|
|
|
users.each do |user|
|
|
size = `du -B1 #{shot_dir}#{user}/ | awk {'print $1'} | head -n 1`
|
|
count = `find #{shot_dir}#{user}/ -maxdepth 1 -type f | wc -l | head -n 1`
|
|
|
|
[size,count].each do |x|
|
|
x.delete! "\n"
|
|
end
|
|
|
|
File.open("#{log_dir}/#{user}.log","a") do |f|
|
|
f << "#{Time.now.to_i} #{count} #{size}\n"
|
|
end
|
|
end
|