mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-15 02:04:28 +00:00
15 lines
400 B
Ruby
15 lines
400 B
Ruby
infilename=ARGV[0]
|
|
outfilename=ARGV[1]
|
|
duplication=ARGV[2].to_i
|
|
|
|
if duplication.nil? then
|
|
puts "usage: dupe_cart.rb [input filename] [output filename] [number of duplications]"
|
|
exit
|
|
end
|
|
|
|
|
|
infile=File.open(infilename,"rb").read
|
|
puts "copying #{infilename} to #{outfilename} #{duplication} times"
|
|
outfile=File.open(outfilename,"wb")
|
|
duplication.times {outfile<<infile}
|
|
outfile.close |