Help in a Recursive date program!!!!


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help in a Recursive date program!!!!
# 15  
Old 03-27-2007
Keep the funtions at the start of your code
Code:
#!/bin/ksh

monthname()
{
case $1 in
01) _MONTH=Jan ;; 02) _MONTH=Feb ;;
03) _MONTH=Mar ;; 04) _MONTH=Apr ;;
05) _MONTH=May ;; 06) _MONTH=Jun ;;
07) _MONTH=Jul ;; 08) _MONTH=Aug ;;
09) _MONTH=Sep ;; 10) _MONTH=Oct ;;
11) _MONTH=Nov ;; 12) _MONTH=Dec ;;
esac
}

six2date()
{
temp=${1#??}
year=$(( ${1%"$temp"} + 2000 ))
monthname "${temp%??}"
day=${temp#??}
_DATE=$_MONTH-$day-$year
}

fourteen2date()
{
temp1=${1#????}
year=${1%"$temp1"}
temp2=${temp1#??}
monthname ${temp1%"$temp2"}
temp3=${temp2##??}
day=${temp2%"$temp3"}
_DATE=$_MONTH-$day-$year
}

cd /tmp/sa/script

file=TP_xx_yy_032307.txt
suffix=${file##*.}
name=${file%_*}
temp=${file%."$suffix"}
date=${temp#"$name"_}

case ${#date} in
6) six2date ${date} ;;
14) fourteen2date ${date};;
esac

newfile=${name}_$_DATE.$suffix
mv "$file" "$newfile"

# 16  
Old 03-27-2007
Quote:
Originally Posted by anbu23
Keep the funtions at the start of your code
Code:
#!/bin/ksh

monthname()
{
case $1 in
01) _MONTH=Jan ;; 02) _MONTH=Feb ;;
03) _MONTH=Mar ;; 04) _MONTH=Apr ;;
05) _MONTH=May ;; 06) _MONTH=Jun ;;
07) _MONTH=Jul ;; 08) _MONTH=Aug ;;
09) _MONTH=Sep ;; 10) _MONTH=Oct ;;
11) _MONTH=Nov ;; 12) _MONTH=Dec ;;
esac
}

six2date()
{
temp=${1#??}
year=$(( ${1%"$temp"} + 2000 ))
monthname "${temp%??}"
day=${temp#??}
_DATE=$_MONTH-$day-$year
}

fourteen2date()
{
temp1=${1#????}
year=${1%"$temp1"}
temp2=${temp1#??}
monthname ${temp1%"$temp2"}
temp3=${temp2##??}
day=${temp2%"$temp3"}
_DATE=$_MONTH-$day-$year
}

cd /tmp/sa/script

file=TP_xx_yy_032307.txt
suffix=${file##*.}
name=${file%_*}
temp=${file%."$suffix"}
date=${temp#"$name"_}

case ${#date} in
6) six2date ${date} ;;
14) fourteen2date ${date};;
esac

newfile=${name}_$_DATE.$suffix
mv "$file" "$newfile"

I was working on that,i mean shuffling the functions to be top...and i seem to get some output...

when i give file input as
output
BP_x_yy_20070323134501.dat ==> BP_x_yy_Mar-23-2007.dat
TP_xx_yy_032307==> TP_xx_yy_-07-2003.txt

The first file output seems to be fine....but the six2date is failing in date conversion..
# 17  
Old 03-27-2007
Quote:
Originally Posted by kumarsaravana_s
I was working on that,i mean shuffling the functions to be top...and i seem to get some output...

when i give file input as
output
BP_x_yy_20070323134501.dat ==> BP_x_yy_Mar-23-2007.dat
TP_xx_yy_032307==> TP_xx_yy_-07-2003.txt

The first file output seems to be fine....but the six2date is failing in date conversion..
Code:
six2date()
{
temp=${1%??}
year=$(( ${1#"$temp"} + 2000 ))
monthname "${temp%??}"
day=${temp#??}
_DATE=$_MONTH-$day-$year
}

# 18  
Old 03-27-2007
Quote:
Originally Posted by anbu23
Code:
six2date()
{
temp=${1%??}
year=$(( ${1#"$temp"} + 2000 ))
monthname "${temp%??}"
day=${temp#??}
_DATE=$_MONTH-$day-$year
}


Perfect Anbu....Thats really great...and i would like to thank Johnson for the code...it is working as expected....

All i need is now ,instead of specifying the file one by one..i will put these files inside a a folder and call them in a loop..

BP_aaa_bbb_20070323050007.dat
BP_ccc_ddd_032307.dat
BP_aa_bb_032307.dat
BP_dd_ee_032307.dat
BP_ff_gg_032307.xls
BP_xx.yy_20070323134501.dat
BP_ss_pp_20070323030002.dat

can it be done something like this

cd /tmp/ss/files

for file in *
do
suffix=${file##*.}
name=${file%_*}
temp=${file%."$suffix"}
date=${temp#"$name"_}
done

And Anbu,the date program that you had sent me,can it be tweaked this way,

BP_xx_yy.dat ....i want the date protion to be inserted like this BP_xx_yy_Mar-23-2007.dat instead of appending at the end....can it be done this way

dt=$( date "+%b-%d-%Y" )
for i in *
do
suffix=${i##*.}
mv $i ${i}"_${dt}"."$suffix"
done
# 19  
Old 03-27-2007
Code:
cd /tmp/ss/files

for file in *
do
suffix=${file##*.}
name=${file%_*}
temp=${file%."$suffix"}
date=${temp#"$name"_}

case ${#date} in
6) six2date ${date} ;;
14) fourteen2date ${date};;
esac

newfile=${name}_$_DATE.$suffix
mv "$file" "$newfile"
done

Code:
dt=$( date "+%b-%d-%Y" )
for i in *
do
mv $i ${i%_*}"_${dt}.${i##*.}"
done

# 20  
Old 03-29-2007
Quote:
Originally Posted by anbu23
[CODE]cd /tmp/ss/files

Code:
dt=$( date "+%b-%d-%Y" )
for i in *
do
mv $i ${i%_*}"_${dt}.${i##*.}"
done

When i run the above code for the first time,it appends with todays date.Something like this

Input : BP_xx_yy.dat
Ouput : BP_xx_yy_Mar-29-2007.dat

But when i re-run the program,instead of overwriting the date portion,it is appending the date once again.

Input:BP_xx_yy_Mar-29-2007.dat
Output : BP_xx_yy_Mar-29-2007_Mar_29_2007.dat

I tried with many combinations with the mv command but in vain...please help me in this regard...

Thanks,
Kumar
# 21  
Old 03-29-2007
Quote:
Originally Posted by kumarsaravana_s
When i run the above code for the first time,it appends with todays date.Something like this

Input : BP_xx_yy.dat
Ouput : BP_xx_yy_Mar-29-2007.dat

But when i re-run the program,instead of overwriting the date portion,it is appending the date once again.

Input:BP_xx_yy_Mar-29-2007.dat
Output : BP_xx_yy_Mar-29-2007_Mar_29_2007.dat

I tried with many combinations with the mv command but in vain...please help me in this regard...

Thanks,
Kumar

Hey....i got it..it is working....Anyways,thanks for looking into it...

Kumar
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

awk program date function no longer running

I work at a company that uses a program written in AWK to track various data and prepare reports. Worked with this program for three years plus (the author is no longer with us) and the YTD Production report will not return a report with a date after 123119. This is a problem. Below is the (I... (3 Replies)
Discussion started by: paulgdavitt
3 Replies

2. Shell Programming and Scripting

Converting a date to friday date and finding Min/Max date

Dear all, I have 2 questions. I have a file with many rows which has date of the format YYYYMMDD. 1. I need to change the date to that weeks friday date(Ex: 20120716(monday) to 20120720). Satuday/Sunday has to be changed to next week friday date too. 2. After converting the date to... (10 Replies)
Discussion started by: 2001.arun
10 Replies

3. Solaris

date command, loop/recursive

is it possible to use output of one date command as input of another? I would like to know the date of Monday two weeks ago. so, the idea is that one date command subtracts two weeks, and the other finds the Monday. (2 Replies)
Discussion started by: orange47
2 Replies

4. UNIX for Dummies Questions & Answers

Short Program for Checking Server date

Hi Guys, Good morning! I have a file which looks something like this: Command was launched from partition 0. ------------------------------------------------ Executing command in server server3 Thu Jan 12 11:10:39 EET 2012 ------------------------------------------------... (3 Replies)
Discussion started by: rymnd_12345
3 Replies

5. UNIX for Dummies Questions & Answers

Script to open program and send/execute command in program

Hi, i want to write a script that executes a program (exec?) . this program then requires a filename as input. how do i give it this input in the script so the program will be complete run and close by the script. e.g. exec prog.exe program then asks for filename "enter filename:"... (1 Reply)
Discussion started by: tuathan
1 Replies

6. Programming

date calculation program

Hi One of my vendor based tool is giving date in no. of days since 1900-01-01. So, I want to display in CCYYMMDD format. For ex:- Vendor based tool is giving as 38790 days since 1900-01-01 corresponding to12/sep/2006 Does anybody has the... (1 Reply)
Discussion started by: axes
1 Replies

7. UNIX for Advanced & Expert Users

find file with date and recursive search for a text

Hey Guyz I have a requirement something like this.. a part of file name, date of modification of that file and a text is entered as input. like Date : 080206 (MMDDYY format.) filename : hotel_rates text : Jim now the file hotel_rates.ZZZ.123 (creation date is Aug 02 2006) should be... (10 Replies)
Discussion started by: rosh0623
10 Replies

8. Programming

storing date into a file from a program

hi all: i want to store the current date in to a file from a program. every time i execute the prg the date should get appended into the file. help me plz (2 Replies)
Discussion started by: bankpro
2 Replies

9. Programming

may be simple but i don't know -- Print current date from C program

How to print current date of the Unix system accessing thru C++ program ? I wrote like this #include <time.h> ....... time_t tt; struct tm *tod; .... time(&tt); tod = localtime(&tt); cout << tod->tm_mon + 1 << "/" << tod->tm_mday << "/" ... (6 Replies)
Discussion started by: ls1429
6 Replies

10. UNIX for Advanced & Expert Users

date program in ksh

#Author : kkodava #!/usr/bin/ksh #Use of this program is You can findout the no of days & day of starting and ending dates #usage no_of_days startdate<yyyymmdd> enddate<yyyymmdd> syy=`echo $1|cut -c1-4` smm=`echo $1|cut -c5-6` sdd=`echo $1|cut -c7-8` eyy=`echo $2|cut -c1-4` emm=`echo... (1 Reply)
Discussion started by: krishna
1 Replies
Login or Register to Ask a Question