[meta] Add Rakefile for organizing common tasks

pull/28/head
Alpha Chen 10 years ago
parent a4aa5aadff
commit fefdcb39fd

@ -0,0 +1,9 @@
# rsync -avz --exclude 'Newest Additions' --exclude '*.DS_Store' . ~/Dropbox/wallpapers/dlanham\ wallpapers
namespace :clean do
task :ds_store do
sh 'find ~/Dropbox -name .DS_Store -print0 | xargs -0 rm'
end
task all: %i[ ds_store ]
end
Loading…
Cancel
Save