Concatenating the filename with date


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Concatenating the filename with date
# 1  
Old 05-26-2008
Java Concatenating the filename with date

Hi,
I want to concatenate the filename with the current date using the get command in ftp.
for ex:
<filename><date>
emp101_20080526
Can you please let me know the command for this.

thanks,
Aswarth.
# 2  
Old 05-26-2008
Have you tried to simply assign the variables and then use

$FILENAME$DATE
# 3  
Old 05-26-2008
Quote:
Originally Posted by Aswarth
Hi,
I want to concatenate the filename with the current date using the get command in ftp.
for ex:
<filename><date>
emp101_20080526
Can you please let me know the command for this.

thanks,
Aswarth.
try this:

fileName=emp101_`date +%Y%m%d`

get $fileName
# 4  
Old 05-26-2008
Java Concatenating the filename with date

hi,
can you please let me know if there is any command in ftp to pick the latest file in a folder.
for ex the filename is concatenated with date and timestamp like this.
emp001_20080516053646.dat
emp001_20080517053646.dat
emp001_20080518053646.dat
where in the format of date is yyyymmddhhmmss

thanks,
Aswarth
# 5  
Old 05-26-2008
Pick up the latest file in a variable, using the following command:

Code:
latest_file=`ll -ltr | tail -1`

Use the variable latest_file in your ftp.

Thanks!
nua7
# 6  
Old 05-26-2008
Java concatenating the filename with date

but that folder contains other files apart from the files that I have mentioned.
so how can include the file name in the comand that you have given me like emp_oo1
thanks,
aswarth
# 7  
Old 05-26-2008
u can make use of the find command with the using the following flags
- amin n.................................. for last accessed time
- cmin n.................................. for last changed time
- mmin n.................................for last data modification time

n is the no of minutes ago...

for instance
$ find -name <file name> -ctime 2

this should work just fine Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to change existing date to current date in a filename?

Suppose i have a list of files in a directory as mentioned below 1. Shankar_04152019_ny.txt 2. Gopi_shan_03122019_mi.txt 3. Siva_mourya_02242019_nd.txt .. . . . . 1000 . Jiva_surya_02282019_nd.txt query : At one shot i want to modify the above all filenames present in one path with... (4 Replies)
Discussion started by: Shankar455
4 Replies

2. Shell Programming and Scripting

How to append date to filename, but base it on yesterday's date?

Hello, I'd like to write a monthly archive script that archives some logs. But I'd like to do it based on yesterday's date. In other words, I'd like to schedule the script to run on the 1st day of each month, but have the archive filename include the previous month instead. Here's what I... (5 Replies)
Discussion started by: nbsparks
5 Replies

3. Shell Programming and Scripting

Get the oldest date based on date in the filename

I am using ksh93 on Solaris. Ok, this may seem like a simple request at first. I have a directory that contains sets of files with a YYYYMMDD component to the name, along with other files of different filespecs. something like this: 20110501_1.dat 20110501_2.dat 20110501_3.dat... (2 Replies)
Discussion started by: gary_w
2 Replies

4. Shell Programming and Scripting

date from filename

Hi all I have the following question: With this command, I get the latest file in a directory. lastfile =`ls -1tr | tail -n 1` echo $lastfile The output is then: partner131210.txt (meaning 13th December 2010) My goal is to get the date into a variable and to obtain a final variable... (4 Replies)
Discussion started by: davis77
4 Replies

5. UNIX for Dummies Questions & Answers

how to display date with filename??

Hi i am currently using below command in shell script and calling it from cron job. This is to take daily backup with the date as suffix to the file.When i try i unable to get the date suffixed to the backup file. Please help me as to wt's wrong in this or how to get the date added to the... (5 Replies)
Discussion started by: abhi_n123
5 Replies

6. UNIX for Dummies Questions & Answers

extracting date from a filename

Hi, I am a beginner in Unix so please bear with me... I have a directory which has files in format: RECF-YYYY-MM-DD-input. For example, RECF-2008-02-25-input. I need to extract the YYYYY-MM-DD substring from this filename and convert that into date and compare it with a date. How do I do that?... (7 Replies)
Discussion started by: laiko
7 Replies

7. UNIX for Dummies Questions & Answers

Date in filename

how do i add the date for the filename? for example filename20080917 (3 Replies)
Discussion started by: khestoi
3 Replies

8. Shell Programming and Scripting

Get date from filename

Hi all, I have this files: aaa20080714.log bbbb20080714.log ccccccc20080714.log Can i get the 20080714 from each file? (6 Replies)
Discussion started by: icy_blu_blu
6 Replies

9. Shell Programming and Scripting

display filename with date

Hi buddies, I have a doubt. I want to display filename with date in the following format.Is there any way to do this. Kindly give me the solution. I want to display the result in the following manner. test1.txt 03/28/2008 testlog.log 02/20/2008 Please let me know one solution how to do... (1 Reply)
Discussion started by: pstanand
1 Replies

10. Shell Programming and Scripting

filename to contain date

hello, can anyone tell me how to rename a filename in a script to contain the current date? i have searched for the answer but with little success! many thanks rkap (4 Replies)
Discussion started by: rkap
4 Replies
Login or Register to Ask a Question