<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: to ftp a file with same time stamp. in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004356#M98752</link>
    <description>Dennis, half understood...can you please eloborate/or pen down the commands on the same file? &lt;BR /&gt;total 16&lt;BR /&gt;-rw-r-----   1     103 Sep 21 10:55 BUS01.PN000002.txt&lt;BR /&gt;-rw-r-----   1     122 Sep  7 10:45 BUS01.PN000001.txt&lt;BR /&gt;-rw-r-----   1     129 Aug 18 09:52 VEC01.PN170899.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:43 VEC01.PN170698.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:43 VEC01.PN170598.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:43 VEC01.PN170498.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:35 VEC01.PN170699.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:35 VEC01.PN170599.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:35 VEC01.PN170499.txt</description>
    <pubDate>Thu, 21 Sep 2006 05:28:41 GMT</pubDate>
    <dc:creator>viseshu</dc:creator>
    <dc:date>2006-09-21T05:28:41Z</dc:date>
    <item>
      <title>to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004343#M98739</link>
      <description>i need to get from a server(there are many files of different file types) through ftp, the recent file of each file type.When i try to ftp all the files and try to do this, its giving the present time stamp to the ftped files.So, can any one please help me in this regard&lt;BR /&gt;NOTE: need only recent file of particular file type. file type will be the first 3 letters.</description>
      <pubDate>Wed, 20 Sep 2006 08:43:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004343#M98739</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-20T08:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004344#M98740</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you are using FTP to transfer files, then as you have seen, the files will be created on the receiving server with a current timestamp.  If you want to replicate the timestamp of the file as it exists on the source server, I suggest that you perform an 'ls' of the file on the source server (with FTP); capture the timestamp information into a log file; and use the captured information to 'touch' your transferred file changing its 'mtime' accordingly.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 20 Sep 2006 08:54:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004344#M98740</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-20T08:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004345#M98741</link>
      <description>Some newer versions of ftp servers support such preserving the timestamp option but as far as I know not the default ftp server which comes with hpux. You need to write a script on both sending and receiving sides to watch for incoming files and when sending these files, you will also send another file with the content of the timestamp of the original file. In turn, the receiving server's script will look at both files and set the time with a touch command.&lt;BR /&gt;&lt;BR /&gt;Or you will relinquish control to the receiving side. Receptor then will issue modtime command before receiving the file and upon completing of transfer, it will touch the file with the desired timestamp.&lt;BR /&gt;&lt;BR /&gt;Neither of these methods are easy but doable.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Wed, 20 Sep 2006 08:54:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004345#M98741</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2006-09-20T08:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004346#M98742</link>
      <description>Hi,&lt;BR /&gt;and welcome to your first ITRC question.&lt;BR /&gt;Can you please confirm that you want to transfer only the last file of a certain filetype from serverA onto serrverB.&lt;BR /&gt;So on ServerA:&lt;BR /&gt;AAAfile1&lt;BR /&gt;AAAfile2&lt;BR /&gt;BBBfile1&lt;BR /&gt;BBBfile2&lt;BR /&gt;BBBfile3&lt;BR /&gt;&lt;BR /&gt;where the first three letters would indicate the filetype and the files are created in cronological order file1, file2,file3.&lt;BR /&gt;&lt;BR /&gt;You would only want to ftp AAAfile2 and BBBfile3,as they are the last created?&lt;BR /&gt;&lt;BR /&gt;Quickest way would be to rsh to ServerB, do a ls -rt AAA* | tail -1, which gives you AAAfile2. Then rcp that file.&lt;BR /&gt;Repeat for ls -rt BBB* | tail -1.&lt;BR /&gt;&lt;BR /&gt;Otherwise you are probably stuck with the ftp "newer" command.</description>
      <pubDate>Wed, 20 Sep 2006 09:04:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004346#M98742</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-20T09:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004347#M98743</link>
      <description>hi Peter,&lt;BR /&gt;          thnks for ur suggestion. But the problem being we dont know how many file types are present on that server!!!and i have to embed this ftp script in my shell script. So tail pipe(|)commands are not working and rsh is not working :( ...&lt;BR /&gt;&lt;BR /&gt;and James thanks for ur nice idea.How can i redirect in an ftp session the output of ls command into a log?? and after redirecting, how can i match if there are so many files.?&lt;BR /&gt;&lt;BR /&gt;thnks in advance</description>
      <pubDate>Wed, 20 Sep 2006 22:05:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004347#M98743</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-20T22:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004348#M98744</link>
      <description>If you want to preserve properties of files, you may want to consider tarring them up and then untar on the other side.&lt;BR /&gt;&lt;BR /&gt;As to the keeping the last one, you may want to use sort -r u -k1.1,1.3  (the key is only the first 3 chars)</description>
      <pubDate>Thu, 21 Sep 2006 01:37:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004348#M98744</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T01:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004349#M98745</link>
      <description>Dennis,&lt;BR /&gt;      Just have a look at my ftp script embedded in my unix script and plz let me know how and where to use tar/untar commands.&lt;BR /&gt;&lt;BR /&gt;ftp -niv &amp;lt;&amp;lt;-EOF |tee -a $FTPLOG&lt;BR /&gt;        open $SERVER&lt;BR /&gt;        user $USER $PASSWORD&lt;BR /&gt;        cd $FIRST_DIR&lt;BR /&gt;        mget *.txt&lt;BR /&gt;        mdelete *.txt&lt;BR /&gt;        bye&lt;BR /&gt;Ican do any scripting related to my server..i cantdo anything at source side.&lt;BR /&gt;Thanks in advacne</description>
      <pubDate>Thu, 21 Sep 2006 02:06:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004349#M98745</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T02:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004350#M98746</link>
      <description>(Sorry, I didn't notice you said get.)&lt;BR /&gt;So it looks like only the sort trick can be used to get the "last" files.  You should copy the files to a temp directory, use the script to get the latest, move to the real directory, then remove the temp dir.&lt;BR /&gt;&lt;BR /&gt;cd tmp-dir&lt;BR /&gt;mv $(ls | sort -r u -k1.1,1.3) real-dir/&lt;BR /&gt;&lt;BR /&gt;This like Peter's suggestion but uses vector methods to get all at once.</description>
      <pubDate>Thu, 21 Sep 2006 02:35:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004350#M98746</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T02:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004351#M98747</link>
      <description>Dennis,&lt;BR /&gt;    we cant use mv,sort commmands in ftp script. And if i use that after i get all the files, that will b of no use as the time stamp will be same for all the files.</description>
      <pubDate>Thu, 21 Sep 2006 03:46:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004351#M98747</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T03:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004352#M98748</link>
      <description>&amp;gt;as the time stamp will be same for all the files&lt;BR /&gt;&lt;BR /&gt;My assumption was as Peter said, the time was encoded into the name of the file.  If not, you will have to script on the source side or use ls to capture the time.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;How can I redirect in an ftp session the output of ls command into a log?? and after redirecting, how can I match if there are so many files?&lt;BR /&gt;&lt;BR /&gt;Ah, looking at the man page:&lt;BR /&gt;ls [remote-directory] [local-file]&lt;BR /&gt;mdir remote-files local-file&lt;BR /&gt;&lt;BR /&gt;(read carefully about the prompting issue)&lt;BR /&gt;ls "-tog ." same4&lt;BR /&gt;output to local-file: same4? y&lt;BR /&gt;&lt;BR /&gt;Once you have the sorted time in same4, you can then figure out which is last.</description>
      <pubDate>Thu, 21 Sep 2006 04:15:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004352#M98748</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T04:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004353#M98749</link>
      <description>Hi,&lt;BR /&gt;can you please supply an actual example of some of the filetypes.&lt;BR /&gt;&lt;BR /&gt;You only want to retrieve the latest generated file of each filetype from server A, correct ? &lt;BR /&gt;&lt;BR /&gt;Do you want to retain the creation date/time of the file as on ServerA onto ServerB ?&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Sep 2006 04:47:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004353#M98749</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-21T04:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004354#M98750</link>
      <description>Hi Peter/Dennis,&lt;BR /&gt;           As dennis adviced, i have kept the files in a log file. But my problem now is im notknowing how to take the latesst file from that. &lt;BR /&gt;total 16&lt;BR /&gt;-rw-r-----   1     122 Sep  7 10:45 BUS01.PN000001.txt&lt;BR /&gt;-rw-r-----   1     129 Aug 18 09:52 VEC01.PN170899.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:43 VEC01.PN170698.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:43 VEC01.PN170598.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:43 VEC01.PN170498.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:35 VEC01.PN170699.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:35 VEC01.PN170599.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:35 VEC01.PN170499.txt&lt;BR /&gt;-rw-r-----   1     103 Sep 21 10:55 BUS01.PN000002.txt&lt;BR /&gt;&lt;BR /&gt;This is the log and i want latest file of BUS and VEC type.this is just a sample there will be so many such types. Plz help me how to get this from the log??&lt;BR /&gt;Peter pls go thru this sample files.</description>
      <pubDate>Thu, 21 Sep 2006 04:58:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004354#M98750</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T04:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004355#M98751</link>
      <description>This list doesn't seem to be in time order.  Did you use ls -tog?&lt;BR /&gt;&lt;BR /&gt;If it was in time order, then you could do:&lt;BR /&gt;$ sort -u -k7.1,7.3 filelist&lt;BR /&gt;-rw-r-- 1 103 Sep 21 10:55 BUS01.PN000002.txt&lt;BR /&gt;-rw---- 1 100 Aug 18 05:35 VEC01.PN170499.txt&lt;BR /&gt;&lt;BR /&gt;(The only possible problem with sort -u, it doesn't say which one it takes.  This could be solved by using nl to number each line, then sort without -u with the two keys, then use awk to compare sequential lines and pick the biggest if the same partial key.)&lt;BR /&gt;&lt;BR /&gt;Note you can't tell the difference between files modified in the same 60 second interval.  But that should be handled by ls -t.&lt;BR /&gt;&lt;BR /&gt;Piping this to awk '{print $7}' would give you the latest filenames.</description>
      <pubDate>Thu, 21 Sep 2006 05:19:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004355#M98751</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T05:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004356#M98752</link>
      <description>Dennis, half understood...can you please eloborate/or pen down the commands on the same file? &lt;BR /&gt;total 16&lt;BR /&gt;-rw-r-----   1     103 Sep 21 10:55 BUS01.PN000002.txt&lt;BR /&gt;-rw-r-----   1     122 Sep  7 10:45 BUS01.PN000001.txt&lt;BR /&gt;-rw-r-----   1     129 Aug 18 09:52 VEC01.PN170899.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:43 VEC01.PN170698.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:43 VEC01.PN170598.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:43 VEC01.PN170498.txt&lt;BR /&gt;-rw-r-----   1     210 Aug 18 05:35 VEC01.PN170699.txt&lt;BR /&gt;-rw-r-----   1     154 Aug 18 05:35 VEC01.PN170599.txt&lt;BR /&gt;-rw-r-----   1     100 Aug 18 05:35 VEC01.PN170499.txt</description>
      <pubDate>Thu, 21 Sep 2006 05:28:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004356#M98752</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T05:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004357#M98753</link>
      <description>Attached is a script that sorts on the two keys and then selects the first in the partial key.</description>
      <pubDate>Thu, 21 Sep 2006 05:59:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004357#M98753</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T05:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004358#M98754</link>
      <description>Dennis,&lt;BR /&gt;     I can hardly see the script in the attachment. There are so many ASCII symbols(jargons) in the txt file.Can you please paste ur script in the box itself???&lt;BR /&gt;&lt;BR /&gt;and will your script give me the recent file of each file type???</description>
      <pubDate>Thu, 21 Sep 2006 06:13:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004358#M98754</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T06:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004359#M98755</link>
      <description>&lt;!--!*#--&gt;Hi,&lt;BR /&gt;attached my version of a possible solution.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Once you have the answer you need, can you please also read:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;</description>
      <pubDate>Thu, 21 Sep 2006 06:14:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004359#M98755</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-21T06:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004360#M98756</link>
      <description>Missing the attachment ;-)&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Sep 2006 06:14:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004360#M98756</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-09-21T06:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004361#M98757</link>
      <description>&lt;!--!*#--&gt;&amp;gt;I can hardly see the script in the attachment. There are so many ASCII symbols(jargons) in the txt file.Can you please paste ur script in the box itself???&lt;BR /&gt;&lt;BR /&gt;It's going to look the same but may have poor indentation.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;will your script give me the recent file of each file type???&lt;BR /&gt;&lt;BR /&gt;Naturally.  ;-)&lt;BR /&gt;&lt;BR /&gt;Peter seems to have the ftp communication down, (but not taking advantage of (ls [remote-directory] [local-file])&lt;BR /&gt;I have just the sorting/selection here.&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;&lt;BR /&gt;# sorts filelist (-tog ouput) based on initial time order.  If duplicates&lt;BR /&gt;# in first 3 bytes, pick first.&lt;BR /&gt;# -rw-r----- 1 103 Sep 21 10:55 BUS01.PN000002.txt&lt;BR /&gt;# Since can't trust sort -u -k, add line numbers.&lt;BR /&gt;&lt;BR /&gt;FILE=filelist&lt;BR /&gt;&lt;BR /&gt;nl -nrz $FILE | sort -k8.1,8.3 -k1n,1n | awk '&lt;BR /&gt;BEGIN {  # prime for first line&lt;BR /&gt;getline&lt;BR /&gt;LAST=substr($8, 1, 3)  # partial key&lt;BR /&gt;print $8               # filename&lt;BR /&gt;}&lt;BR /&gt;{&lt;BR /&gt;KEY=substr($8, 1, 3)&lt;BR /&gt;if (KEY != LAST) {     # if new type&lt;BR /&gt;   print $8            # filename&lt;BR /&gt;   LAST=KEY            # save key&lt;BR /&gt;}&lt;BR /&gt;next&lt;BR /&gt;} '</description>
      <pubDate>Thu, 21 Sep 2006 06:30:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004361#M98757</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2006-09-21T06:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: to ftp a file with same time stamp.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004362#M98758</link>
      <description>hi all,&lt;BR /&gt;      thanks for your help. please let me keep this post open for 3 more days till i get some confirmations DENNIS i specially thank u for ur patience and great help.&lt;BR /&gt;Thnku very much PETER...</description>
      <pubDate>Thu, 21 Sep 2006 07:44:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/to-ftp-a-file-with-same-time-stamp/m-p/5004362#M98758</guid>
      <dc:creator>viseshu</dc:creator>
      <dc:date>2006-09-21T07:44:06Z</dc:date>
    </item>
  </channel>
</rss>

