List files by month and move them to a new location
Created: 23 November 2005 Modified:Originally published on chrislynch.info website.
for i in `ls -al | grep Aug | awk '{print $9}'` ; do echo mv $i ./aug ; mv $i ./aug; done
Originally published on chrislynch.info website.
for i in `ls -al | grep Aug | awk '{print $9}'` ; do echo mv $i ./aug ; mv $i ./aug; done