From 4bf5d17e693ab32e6ad5af6a15228ba6f2877c94 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Wed, 13 Jul 2016 07:45:04 -0700 Subject: [PATCH] Remove archive_crosswords script --- bin/archive_crosswords | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 bin/archive_crosswords diff --git a/bin/archive_crosswords b/bin/archive_crosswords deleted file mode 100755 index c38d3f1..0000000 --- a/bin/archive_crosswords +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env ruby - -require 'fileutils' - -Dir[File.expand_path('~/Downloads/*.puz')].each do |puz| - crossword = File.basename(puz, '.puz') - dir = case crossword - when /av\d{6}/ - 'AV' - when /\d{3}[a-zA-Z]+/ - 'BEQ' - when /mgwcc\d{3}/ - 'MGWCC' - when /[A-Z][a-z]{2}\d{4}/ - 'NYT' - else - 'etc' - end - dir = File.expand_path("~/Dropbox/Shared/Crosswords/#{dir}") - FileUtils.mv puz, to, verbose: true -end