X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=scripts%2Ffiles-from-date.rb;fp=scripts%2Ffiles-from-date.rb;h=0000000000000000000000000000000000000000;hb=598bd6905829d6675801d1256e4d4f37f2785bdb;hp=4fde0c5b683acfb20c6cef180fe3b87238d57e24;hpb=831e1711cdf96ccd26203aec08a46e5c09bca3bd;p=backups%2F.git diff --git a/scripts/files-from-date.rb b/scripts/files-from-date.rb deleted file mode 100755 index 4fde0c5..0000000 --- a/scripts/files-from-date.rb +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/ruby - -# Make sure the record separator is zero rather than new-line -$/ = "\0" - -# The only argument is the date for which to list files -date = ARGV.shift.to_i - -ARGF.each do |line| - # The seventh and eigth fields are the backup date and the file name. - backupdate,name = line.split( ' ', 8 )[6,7] - - # Print the name if the backup date matches - print name if date == backupdate.to_i -end