View Single Post
Old 05-31-2012, 03:00 PM   #6
DSpider
Evangelist
DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.DSpider ought to be getting tired of karma fortunes by now.
 
DSpider's Avatar
 
Posts: 450
Karma: 343115
Join Date: Nov 2009
Location: Romania
Device: PW2 2014
You know that's actually not a bad idea...


For Windows you can create a .bat (or .cmd) file with:
Code:
@echo off
move /y "C:\Documents and Settings\Administrator\Desktop\Both\*0.jpg" "C:\Documents and Settings\Administrator\Desktop\Left Side"
move /y "C:\Documents and Settings\Administrator\Desktop\Both\*2.jpg" "C:\Documents and Settings\Administrator\Desktop\Left Side"
move /y "C:\Documents and Settings\Administrator\Desktop\Both\*4.jpg" "C:\Documents and Settings\Administrator\Desktop\Left Side"
move /y "C:\Documents and Settings\Administrator\Desktop\Both\*6.jpg" "C:\Documents and Settings\Administrator\Desktop\Left Side"
move /y "C:\Documents and Settings\Administrator\Desktop\Both\*8.jpg" "C:\Documents and Settings\Administrator\Desktop\Left Side"
And for Linux you can just run:

Code:
$ mv /media/Storage/Both/*[02468].jpg "/media/Storage/Left Side"
Thanks.
DSpider is offline   Reply With Quote