<?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: problem in selecting files as per timestamp while ftp in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273111#M688352</link>
    <description>Thanks JRF&lt;BR /&gt;but my file listing is bit complicated since the remote server is open vms and i am running this program from unix box&lt;BR /&gt;dir listing created has many columns  like filename  version,filesize,timestamp,owner,privileges&lt;BR /&gt;and same file information of this type is split on 2 lines&lt;BR /&gt;like&lt;BR /&gt;filename1 &lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;filename2&lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;filename3&lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i am using dir command after ftp session to list files &lt;BR /&gt;pl advice&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;</description>
    <pubDate>Mon, 22 Sep 2008 01:03:51 GMT</pubDate>
    <dc:creator>hpuserhk</dc:creator>
    <dc:date>2008-09-22T01:03:51Z</dc:date>
    <item>
      <title>problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273105#M688346</link>
      <description>Hello Folks,&lt;BR /&gt;I written shell script for processing some data,one of the requirement is to ftp files from remote server, problem is i want to ftp&lt;BR /&gt;files of from server only of yesterday ,and filename do not have any string for timestamp,so from file creation date on remote server i need to pick up files of yesterday,&lt;BR /&gt;when i go in ftp session i dont have any option to select yesterdays files ,so i create list of files and copy on local computer and try to filter name of yesterday files from list,but created list also not in proper format,filename and date on seperate lines,pl adive,&lt;BR /&gt;thanks in advance&lt;BR /&gt;best regards</description>
      <pubDate>Sun, 21 Sep 2008 10:04:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273105#M688346</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-21T10:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273106#M688347</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Here is an example ftp script.&lt;BR /&gt;&lt;BR /&gt;ftp -i -v -n ftp.somwhere.com &amp;lt;&amp;lt; END_FTP &amp;gt;&amp;gt; someuser mypasswordbinary&lt;BR /&gt;lcd /scripts/download&lt;BR /&gt;cd /scripts&lt;BR /&gt;get auto_ftp_xfer.ksh&lt;BR /&gt;bye&lt;BR /&gt;END_FTP &lt;BR /&gt;&lt;BR /&gt;you can do an ls -la instead, connect the data and use whatever criteria you want to actually get files with a second connection.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sun, 21 Sep 2008 10:34:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273106#M688347</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-09-21T10:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273107#M688348</link>
      <description>Thanks steven for reply,&lt;BR /&gt;&lt;BR /&gt;i already tried that way also,but issues are after ftp files from remote to local machine&lt;BR /&gt;file creation date is reset to todays date of all the files,so timestamps of files of remote machine is lost,so its impossible to fileter yesterdays files,other issues there is very large number of files on remote machine and this process run everyday so performance wise problem.&lt;BR /&gt;Now i am thinking of getting list of all files from remote server(using ftp session since i have authentication of ftp only)using command &lt;BR /&gt;dir fielnames* outputfile.txt&lt;BR /&gt;so outputfile.txt contain list of all files&lt;BR /&gt;but when i checked the outputfile.txt list contains filename and timestamps on seperate lines ,&lt;BR /&gt;example&lt;BR /&gt;filename1     owner     &lt;BR /&gt;           dateoffile&lt;BR /&gt;filename2     owner&lt;BR /&gt;           dateoffile&lt;BR /&gt;so advice how to filter&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2008 11:39:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273107#M688348</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-21T11:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273108#M688349</link>
      <description>&lt;!--!*#--&gt;It may not solve all your problems, but you&lt;BR /&gt;might wish to look into using wget as your&lt;BR /&gt;FTP client.  It can read and interpret FTP&lt;BR /&gt;server file listings, and set the date-time&lt;BR /&gt;of a fetched file to match the date-time it&lt;BR /&gt;had on the server (within the obvious limits&lt;BR /&gt;of the lame date-time format used in a&lt;BR /&gt;typical UNIX-like "ls -l" report).  It&lt;BR /&gt;doesn't know what "yesterday" is, but it does&lt;BR /&gt;have options like&lt;BR /&gt;&lt;BR /&gt;  -N,  --timestamping     don't re-retrieve files unless newer than local.&lt;BR /&gt;&lt;BR /&gt;which might be useful.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.gnu.org/software/wget/wget.html" target="_blank"&gt;http://www.gnu.org/software/wget/wget.html&lt;/A&gt;</description>
      <pubDate>Sun, 21 Sep 2008 11:55:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273108#M688349</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-09-21T11:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273109#M688350</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; ...but created list also not in proper format,filename and date on seperate lines,please adisve...&lt;BR /&gt;&lt;BR /&gt;This is easy to fix.  Given something like:&lt;BR /&gt;&lt;BR /&gt;# cat myfile&lt;BR /&gt;filename1&lt;BR /&gt;09-21-2008 08:01&lt;BR /&gt;filename2&lt;BR /&gt;09-21-2008 09:00&lt;BR /&gt;filename3&lt;BR /&gt;09-21-2008 09:00&lt;BR /&gt;&lt;BR /&gt;Do:&lt;BR /&gt;&lt;BR /&gt;# paste -d " " - - &amp;lt; myfile &amp;gt; myfile.new&lt;BR /&gt;&lt;BR /&gt;# cat myfile.new&lt;BR /&gt;filename1 09-21-2008 08:01&lt;BR /&gt;filename2 09-21-2008 09:00&lt;BR /&gt;filename3 09-21-2008 09:00&lt;BR /&gt;&lt;BR /&gt;Now you can more easily parse the file for yesterday's file names.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2008 12:53:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273109#M688350</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-09-21T12:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273110#M688351</link>
      <description>Didn't you already ask this question before:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1263027" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1263027&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;assigned points to   5  of   31  responses&lt;BR /&gt;Also please read the following about assigning points:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/pageList.do?userId=CA1472826&amp;amp;listType=unassigned&amp;amp;forumId=1" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/pageList.do?userId=CA1472826&amp;amp;listType=unassigned&amp;amp;forumId=1&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 21 Sep 2008 18:42:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273110#M688351</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-09-21T18:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273111#M688352</link>
      <description>Thanks JRF&lt;BR /&gt;but my file listing is bit complicated since the remote server is open vms and i am running this program from unix box&lt;BR /&gt;dir listing created has many columns  like filename  version,filesize,timestamp,owner,privileges&lt;BR /&gt;and same file information of this type is split on 2 lines&lt;BR /&gt;like&lt;BR /&gt;filename1 &lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;filename2&lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;filename3&lt;BR /&gt;         filesize timestamp owner privileges&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i am using dir command after ftp session to list files &lt;BR /&gt;pl advice&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Sep 2008 01:03:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273111#M688352</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-22T01:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273112#M688353</link>
      <description>&amp;gt; [...] the remote server is open vms [...]&lt;BR /&gt;&lt;BR /&gt;Well.  The secret is out at last.&lt;BR /&gt;&lt;BR /&gt;If the FTP server runs on a VMS system, then&lt;BR /&gt;you haven't specified which one it is, as&lt;BR /&gt;there is more than one IP package possible,&lt;BR /&gt;and probably more than one possible FTP&lt;BR /&gt;server on each.  I'd still suggest looking at&lt;BR /&gt;wget to see if it helps, but you'd probably&lt;BR /&gt;do better with the more VMS-tolerant code in&lt;BR /&gt;my wget kit:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://antinode.info/dec/sw/wget.html" target="_blank"&gt;http://antinode.info/dec/sw/wget.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  dateoffile&lt;BR /&gt;&lt;BR /&gt;This, by the way, was a particularly&lt;BR /&gt;unhelpful way to describe what you get in the&lt;BR /&gt;file listing.  If you had shown the actual&lt;BR /&gt;data instead of hiding the useful details,&lt;BR /&gt;some important things would have been clearer&lt;BR /&gt;sooner.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; dir listing created has many columns like&lt;BR /&gt;&amp;gt; filename&lt;BR /&gt;&amp;gt; version,filesize,timestamp,owner,privileges&lt;BR /&gt;&amp;gt; and same file information of this type is&lt;BR /&gt;&amp;gt; split on 2 lines&lt;BR /&gt;&amp;gt; like&lt;BR /&gt;&lt;BR /&gt;I wouldn't say that the file version is in a&lt;BR /&gt;separate column, either.  In any case, if my&lt;BR /&gt;wget code has any trouble dealing with a VMS&lt;BR /&gt;FTP server, please let me know.  (If, that&lt;BR /&gt;is, you can provide a complete and useful&lt;BR /&gt;problem report instead of one like this.)</description>
      <pubDate>Mon, 22 Sep 2008 02:30:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273112#M688353</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-09-22T02:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273113#M688354</link>
      <description>following is sample file contents:&lt;BR /&gt;FILE1_29223080.DAT;1&lt;BR /&gt; 0/0     21-SEP-2008 04:05:39  [CSL,PCMIBAT]&lt;BR /&gt;   (RWED,RWED,RWED,RE)&lt;BR /&gt;FILE2_29223080.DAT;1 0/0     21-SEP-2008 04:05:39  [CSL,PCMIBAT]&lt;BR /&gt;   (RWED,RWED,RWED,RE)&lt;BR /&gt;FILE3_29223080.DAT;1 0/0     21-SEP-2008 04:05:39  [CSL,PCMIBAT]&lt;BR /&gt;   (RWED,RWED,RWED,RE)&lt;BR /&gt;&lt;BR /&gt;Please note 2nd and 3rd line in file is one line so each record has 2 lines,&lt;BR /&gt;pl advise how to make this line continuos or concat the files&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;</description>
      <pubDate>Mon, 22 Sep 2008 02:41:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273113#M688354</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-22T02:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273114#M688355</link>
      <description>&lt;!--!*#--&gt;&amp;gt; following is sample file contents:&lt;BR /&gt;&amp;gt; [...]&lt;BR /&gt;&lt;BR /&gt;Yup, that's a typical VMS FTP server listing.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Please note 2nd and 3rd line in file is one&lt;BR /&gt;&amp;gt; line so each record has 2 lines,&lt;BR /&gt;&amp;gt; pl advise how to make this line continuos&lt;BR /&gt;&amp;gt; or concat the files&lt;BR /&gt;&lt;BR /&gt;In a listing like this, I'd expect to see all&lt;BR /&gt;the items on one line if the name is short,&lt;BR /&gt;and to see the name on its own line if the&lt;BR /&gt;name is long.  It's not obvious from the&lt;BR /&gt;Forum-mutilated text shown here, but the file&lt;BR /&gt;names start in column 1 of their lines, while&lt;BR /&gt;the lines which don't include the file name&lt;BR /&gt;start with some white space.  This gives you&lt;BR /&gt;an easy way to distinguish a continuation&lt;BR /&gt;line from a file name.  I'd need to think a&lt;BR /&gt;while if I wanted some sed commands to do a&lt;BR /&gt;join when a line starts with a space, but I&lt;BR /&gt;suspect that there's a way to do that.&lt;BR /&gt;&lt;BR /&gt;Personally, I'd try very hard to find a way&lt;BR /&gt;to persuade wget to do the work, because I&lt;BR /&gt;believe that it (well, my version of "it")&lt;BR /&gt;has all the code needed to interpret a&lt;BR /&gt;listing like this.  It's certainly willing to&lt;BR /&gt;fetch only files which have been updated on&lt;BR /&gt;the server since they were last downloaded:&lt;BR /&gt;&lt;BR /&gt;  -N,  --timestamping            don't re-retrieve files unless newer than&lt;BR /&gt;                                 local.&lt;BR /&gt;&lt;BR /&gt;With a little fooling around, I'd bet that it&lt;BR /&gt;could be modified to fetch files newer than&lt;BR /&gt;some single, user-specified date-time, too,&lt;BR /&gt;but I don't think that it has an option for&lt;BR /&gt;exactly that behavior now.</description>
      <pubDate>Mon, 22 Sep 2008 05:15:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273114#M688355</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-09-22T05:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273115#M688356</link>
      <description>Thanks Steven&lt;BR /&gt;&lt;BR /&gt;I can understand wget is easy way to do this task,but problem is i cant ask client to use 3rd party software ,so i had to resolve this by unix /scripting ,i am trying but getting directory listing first then do some shell script coding to read alternate line match the string and create file of required ftp files,but here again files generated by ftp dir command contain timestamp in DD-MMM-yyyy HHMISS format where&lt;BR /&gt;is yesterday date of by unix command is in dd-mm-yyyy format ,so  is there any direct command to change format of date or i handle this also by coding&lt;BR /&gt;&lt;BR /&gt;Best Regards</description>
      <pubDate>Mon, 22 Sep 2008 05:57:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273115#M688356</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-22T05:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273116#M688357</link>
      <description>&amp;gt;files generated by ftp dir command contain timestamp in DD-MMM-yyyy HHMMSS format where as yesterday date of by unix command is in dd-mm-yyyy format&lt;BR /&gt;&lt;BR /&gt;You can't get yesterday's day unless you save it, use perl or a C application.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;is there any direct command to change format of date&lt;BR /&gt;&lt;BR /&gt;date(1) allows you to use any format you like:&lt;BR /&gt;date "+%d-%b-%Y"&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I handle this also by coding&lt;BR /&gt;&lt;BR /&gt;Getting "yesterday" may be the toughest.</description>
      <pubDate>Mon, 22 Sep 2008 08:10:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273116#M688357</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-09-22T08:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273117#M688358</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;We could have been of more help from the beginning had you posted some *actual* samples of your file's data.&lt;BR /&gt;&lt;BR /&gt;As Dennis deduced, this is also a continutation of your earlier "Urgent- Problem in FTP" dated August 27 [where you failed to score the feedback given there].  It would have been clearer to this whole discussion had you continued this there.&lt;BR /&gt;&lt;BR /&gt;Either use 'paste' to join multiple lines of your directory listing as I suggested above, or write a simple shell read loop to join (or not) successive lines based on their content.&lt;BR /&gt;&lt;BR /&gt;All this said, use Perl to compute and format "yesterday's" date.&lt;BR /&gt;&lt;BR /&gt;# DATE=$(perl -MPOSIX -le 'print strftime "%d-%b-%Y",localtime(time-86400)')&lt;BR /&gt;# echo $DATE&lt;BR /&gt;21-Sep-2008&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 22 Sep 2008 10:37:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273117#M688358</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-09-22T10:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273118#M688359</link>
      <description>&amp;gt; You can't get yesterday's day unless you&lt;BR /&gt;&amp;gt; save it, use perl or a C application.&lt;BR /&gt;&lt;BR /&gt;A programming problem which can be solved&lt;BR /&gt;only by using these two languages?&lt;BR /&gt;Interesting, but unlikely.&lt;BR /&gt;&lt;BR /&gt;There's already C code in (my) wget to parse&lt;BR /&gt;a VMS FTP server listing (which, I claim, is&lt;BR /&gt;much easier to do than parsing a UNIX-like&lt;BR /&gt;"ls -l" listing), so you can use it, adapt&lt;BR /&gt;it, or ignore it and do it all yourself (in&lt;BR /&gt;whichever language you find appropriate).&lt;BR /&gt;Having already done this work once, I'm not&lt;BR /&gt;particularly interested in doing it again,&lt;BR /&gt;but you can do what you wish.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] but problem is [...]&lt;BR /&gt;&lt;BR /&gt;Actually, the _big_ problem here is that you&lt;BR /&gt;seem to be unable to present a usefully&lt;BR /&gt;complete description of the problem you're&lt;BR /&gt;trying to solve, and the constraints on the&lt;BR /&gt;solution, which pretty much sucks all the fun&lt;BR /&gt;out of trying to help you with it.</description>
      <pubDate>Mon, 22 Sep 2008 13:25:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273118#M688359</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-09-22T13:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem in selecting files as per timestamp while ftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273119#M688360</link>
      <description>Thanks all for your support&lt;BR /&gt;Once i free from work i will make necessary assignment for help&lt;BR /&gt;&lt;BR /&gt;I am doing to code it in shell scripting&lt;BR /&gt;actually i was avoiding to write more code&lt;BR /&gt;and find some way to do it effectively in one command&lt;BR /&gt;but this can be handle with shell scripting&lt;BR /&gt;by reading and manipulating file containing dir listing&lt;BR /&gt;Best Regards</description>
      <pubDate>Tue, 23 Sep 2008 06:14:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-in-selecting-files-as-per-timestamp-while-ftp/m-p/4273119#M688360</guid>
      <dc:creator>hpuserhk</dc:creator>
      <dc:date>2008-09-23T06:14:46Z</dc:date>
    </item>
  </channel>
</rss>

