Moving log files based on month - help with ksh shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Moving log files based on month - help with ksh shell script
# 1  
Old 02-03-2012
Moving log files based on month - help with ksh shell script

Hello,

I'm trying to move the log files from the parent directory to respective monthly folder and I would be running this script on a weekly basis through cron.

I'm new to this scripting and here is what i could come up and it runs without really doing anything. I even tried placing echo statements for each of the case and still it does not do anything. Any help is greatly appreciated. When i just run this directly, i do get the listing of the month in 3 letters for all the log files in the folder.
Code:
#! /bin/ksh

for file in /test/logs ;
do
month=$(ls -l $file | awk '{ print $6 }')

case "$month" in
    "Jan") mv $file /test/logs/Jan/$file ;;
    "Feb") mv $file /test/logs/Feb/$file ;;
    "Mar") mv $file /test/logs/Mar/$file ;;
    "Apr") mv $file /test/logs/Apr/$file ;;
    "May") mv $file /test/logs/May/$file ;;
    "Jun") mv $file /test/logs/Jun/$file ;;
    "Jul") mv $file /test/logs/Jul/$file ;;
    "Aug") mv $file /test/logs/Aug/$file ;;
    "Sep") mv $file /test/logs/Sep/$file ;;
    "Oct") mv $file /test/logs/Oct/$file ;;
    "Nov") mv $file /test/logs/Nov/$file ;;
    "Dec") mv $file /test/logs/Dec/$file ;;
    *) echo " Do nothing " ;;
esac
done

Thanks
# 2  
Old 02-03-2012
see 'man ls' under the --time-style. you can use the +FORMAT to specify the time format you like. In your case, it wiil be --time-style=+%b

Code:
cd /test/logs
mkdir Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
ls -l --time-style=+%b | while read perm size user group byte month filename
do
  if [ -f "$filename" ]; then
    mv "$filename" $month
  fi
done

# 3  
Old 02-03-2012
Thanks for showing me to how to in much simpler way. However, i'm getting an error when i ran your script. The error is
Code:
ls: illegal option -- time-style=+%b
usage: ls -1RaAdCxmnlhogrtuvVcpFbqisfHLeE@ [files]


Last edited by Franklin52; 02-04-2012 at 02:17 PM.. Reason: Please use code tags for data and code samples, thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to copy the previous month files using shell script?

could you please assist the below query. i had written the below piece of code to copy the files from one directory to another. For current month files had been copied ,unfortunately the previous month files not copied. Please find the below directory structure:- ls -lrt total 1824... (2 Replies)
Discussion started by: venkat918
2 Replies

2. Shell Programming and Scripting

Shell Script for renaming and moving Files - Easy?

Hey guys, ive been working on this for about 2hrs now - without any solution. At first I need to say I dont have skills in linux bash scripting, but I tried to use some codesnippets and manuals from google. What I want to do: I have different folders including 2 different filestypes with... (15 Replies)
Discussion started by: peter1337
15 Replies

3. UNIX for Dummies Questions & Answers

Need script to move files based on month

Hi , I need a script which moves files based on month. Example : Apr 29 03:16 log4.txt Apr 29 03:16 log5.txt May 4 09:17 log1.txt May 4 09:17 log2.txt Move Apr files into Apr2015(Folder) Move May files into May2015(Folder). This is urgent requirement , if you can help me... (5 Replies)
Discussion started by: rockingvj
5 Replies

4. Shell Programming and Scripting

Fetch files based on month

Hi All I have a requirement like below.I have always 12 files got generated in my directory called /xx/out/ abc_2014_10_121.xml abc_2014_09_345.xml abc_2014_08_432.xml abc_2014_07_123.xml abc_2014_06_098.xml abc_2014_05_569.xml abc_2014_04_430.xml abc_2014_03_235.xml abc_2014_02_056.xml... (9 Replies)
Discussion started by: chigurupati.dwh
9 Replies

5. UNIX for Dummies Questions & Answers

Script moving files based on date

Hi, I need a script that moves files based on date to a folder. The folder should be created based on file date. Example is : Date file name ----- -------- Oct 08 07:39 10112012_073952.xls Oct 09 07:39 10112012_073952.xls Oct 10 07:39 ... (6 Replies)
Discussion started by: rockingvj
6 Replies

6. Solaris

Move files into different folders based on its month

Hi All, I want to move the files in to different folders based on the files month in the file timestamp. For example All the september files in the directory should moves into the folder "sep_bkp_files" , August files in to aug_bkp_files folder... Please help me to achive the above... (10 Replies)
Discussion started by: velava
10 Replies

7. Shell Programming and Scripting

Need help to write a script for moving the log files to some other folder

Hi Experts, I want to write a script, based upon the following requirement 1) I am having 5 application $ cd logs $ ls -l drwxr-xr-x 2 natraj nat 5.0K Sep 20 10:25 one drwxr-xr-x 2 natraj nat 5.0K Sep 20 10:39 two drwxr-xr-x 2 natraj nat 1.5K Sep 20 10:58... (4 Replies)
Discussion started by: natraj005
4 Replies

8. Shell Programming and Scripting

How to extract log info based on last month?

Hi Gurus I'm using HPUX B.11.23 ia64, the below sample log data was extracted from HPUX commnad: last -R. Sample data: root pts/ta userpc Wed Aug 11 09:46 - 20:21 (10:35) root pts/ta userpc Wed Aug 11 09:44 - 20:10 (10:34) root pts/ta userpc Wed Aug 11... (4 Replies)
Discussion started by: superHonda123
4 Replies

9. UNIX for Dummies Questions & Answers

print previous month (current month minus 1) with Solaris date and ksh

Hi folks month=`date +%m`gives current month Howto print previous month (current month minus 1) with Solaris date and ksh (7 Replies)
Discussion started by: slashdotweenie
7 Replies

10. Shell Programming and Scripting

Need help with shell script for moving/deleting/renaming files

Hi. I need help with a little script that will be used to move some files to their parent directory, delete the directory, rename one file in the parent directory and delete another, then continue to the next. Here's an example: /var/media/Music/Genesis/1970 album - Trespass (2008 Box -... (4 Replies)
Discussion started by: aflower
4 Replies
Login or Register to Ask a Question