<?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: renaming files help in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343934#M16043</link>
    <description>Ben,&lt;BR /&gt;&lt;BR /&gt;I would write a small DCL script to iterate through the directories using F$SEARCH, then F$PARSE to break the resulting filenames into their component pieces, then constructing the desired filename. Finally use the RENAME command to actually rename from the old file to the new file.&lt;BR /&gt;&lt;BR /&gt;You may find my presentation on DCL Lexical functions from the Fall 1995 DECUS Symposium useful (the PDF of the slides can be found at &lt;A href="http://www.rlgsc.com/decus/usf95/index.html" target="_blank"&gt;http://www.rlgsc.com/decus/usf95/index.html&lt;/A&gt; ).&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
    <pubDate>Fri, 23 Jan 2009 20:05:44 GMT</pubDate>
    <dc:creator>Robert Gezelter</dc:creator>
    <dc:date>2009-01-23T20:05:44Z</dc:date>
    <item>
      <title>renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343932#M16041</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt; I'm after some help in renaming files on a VMS/ VAX system.&lt;BR /&gt;&lt;BR /&gt;The files are called &lt;BR /&gt;Benbad.310;1&lt;BR /&gt;Benbad.311;1&lt;BR /&gt;Benbad.312;1&lt;BR /&gt;Benbad.314;1&lt;BR /&gt;.....and so on&lt;BR /&gt;There are about 300 or so files.&lt;BR /&gt;I want to rename them to &lt;BR /&gt;Benin.010;1&lt;BR /&gt;Benin.011;1&lt;BR /&gt;Benin.012;1&lt;BR /&gt;Benin.014;1&lt;BR /&gt;....and so on  (relace the 3 to a 0)&lt;BR /&gt;&lt;BR /&gt;I have tried rename Benbad.3*;1 to Benin.0*;1&lt;BR /&gt;but it comes up with 'error opening file Benin.0*; as output&lt;BR /&gt;&lt;BR /&gt;Anyone know of a way of renaming the whole lot of files easily? I don't really want to rename each one one at a time as it'll take ages.&lt;BR /&gt;&lt;BR /&gt;Many thanks in advance&lt;BR /&gt;&lt;BR /&gt;BM</description>
      <pubDate>Fri, 23 Jan 2009 19:43:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343932#M16041</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T19:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343933#M16042</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;to begin with:&lt;BR /&gt;WELCOME to the VMS forum!&lt;BR /&gt;&lt;BR /&gt;For your problem, I would create a small DCL command file.&lt;BR /&gt;&lt;BR /&gt;$loop:&lt;BR /&gt;$ next = f$search("benbad.*")&lt;BR /&gt;$ if next .eqs. "" then goto done&lt;BR /&gt;$ ext = f$parse(next,,,"extention") - "."&lt;BR /&gt;$ if f$type(ext) .nes. "INTEGER" then goto done&lt;BR /&gt;$ if ext .lt. 300 then goto done&lt;BR /&gt;$ nwext = ext - 300&lt;BR /&gt;$ rename 'next' *.'nwext&lt;BR /&gt;$ goto loop&lt;BR /&gt;$done:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Explanation:&lt;BR /&gt;-find the next file called benbad -- any extension&lt;BR /&gt;-get its extension, but remove the "."&lt;BR /&gt;-test it for being a number&lt;BR /&gt;-if it is less than 300 you may have restarted (check this for validity in your environment; might need to change to GOTO LOOP)&lt;BR /&gt;- subtract 100&lt;BR /&gt;- rename&lt;BR /&gt;- repeat&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Fri, 23 Jan 2009 20:02:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343933#M16042</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2009-01-23T20:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343934#M16043</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;I would write a small DCL script to iterate through the directories using F$SEARCH, then F$PARSE to break the resulting filenames into their component pieces, then constructing the desired filename. Finally use the RENAME command to actually rename from the old file to the new file.&lt;BR /&gt;&lt;BR /&gt;You may find my presentation on DCL Lexical functions from the Fall 1995 DECUS Symposium useful (the PDF of the slides can be found at &lt;A href="http://www.rlgsc.com/decus/usf95/index.html" target="_blank"&gt;http://www.rlgsc.com/decus/usf95/index.html&lt;/A&gt; ).&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Fri, 23 Jan 2009 20:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343934#M16043</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2009-01-23T20:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343935#M16044</link>
      <description>Hello Jan&lt;BR /&gt;&lt;BR /&gt; Many thanks for the quick reply. I'll give this a go and let you know how I get on.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Ben</description>
      <pubDate>Fri, 23 Jan 2009 20:06:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343935#M16044</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T20:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343936#M16045</link>
      <description>Thanks Rob&lt;BR /&gt;&lt;BR /&gt;I'll take a look at that.&lt;BR /&gt;&lt;BR /&gt;Cheers guys&lt;BR /&gt;&lt;BR /&gt;Ben</description>
      <pubDate>Fri, 23 Jan 2009 20:08:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343936#M16045</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T20:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343937#M16046</link>
      <description>Well, there is no direct RENAME option to do this.&lt;BR /&gt;&lt;BR /&gt;You can go the DCL route with an F$SEARCH in a loop, pick apart the filename (f$PARSE) and rename or... use PERL.&lt;BR /&gt;&lt;BR /&gt;$! dir be*&lt;BR /&gt;Benbad.310;1        Benbad.311;1        Benbad.312;1        Benbad.314;1&lt;BR /&gt;&lt;BR /&gt;$ ! Always do a dry-run:&lt;BR /&gt;$ perl -e "for (&lt;BENBAD.&gt;) {$o = $_; s/\.3/.0/; print qq($o $_\n)}"&lt;BR /&gt;benbad.310 benbad.010&lt;BR /&gt;benbad.311 benbad.011&lt;BR /&gt;benbad.312 benbad.012&lt;BR /&gt;benbad.314 benbad.014&lt;BR /&gt;&lt;BR /&gt;$ ! Now for real...&lt;BR /&gt;&lt;BR /&gt;$ perl -e "for (&lt;BENBAD.&gt;) {$o = $_; s/\.3/.0/; rename   $o,$_   }"&lt;BR /&gt;&lt;BR /&gt;$ dir be*&lt;BR /&gt;benbad.010;1        benbad.011;1        benbad.012;1        benbad.014;1&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BENBAD.&gt;&lt;/BENBAD.&gt;</description>
      <pubDate>Fri, 23 Jan 2009 20:08:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343937#M16046</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-01-23T20:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343938#M16047</link>
      <description>&lt;!--!*#--&gt;btw... &lt;BR /&gt;For me this is one of the most use perl 'one-liner' in my personal repetoir :-).&lt;BR /&gt;&lt;BR /&gt;For those who are not too familiar with perl but intersted some, here is that command in slow motion:&lt;BR /&gt;&lt;BR /&gt;perl -e    !  Command to follw in string&lt;BR /&gt;for ()     !  Loop over some array returning&lt;BR /&gt;           !  elements into default variable $_  &lt;BR /&gt;&lt;BENBAD.&gt; !  GLOB function returing arrya of matching file names&lt;BR /&gt;{          !  Block open&lt;BR /&gt;$o = $_;   !  copy $_ into $o (old name)&lt;BR /&gt;s/\.3/.0/; !  Substitute .3 with a .0   &lt;BR /&gt;           !  Escape the period as it is a wildcard.&lt;BR /&gt;rename $o,$_ !  Function to do the deed&lt;BR /&gt;}          ! Block Done, loop around&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BENBAD.&gt;</description>
      <pubDate>Fri, 23 Jan 2009 20:19:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343938#M16047</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-01-23T20:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343939#M16048</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;I think I'm going to have to use the DCL script method here as PERL is not installed on our VAX.&lt;BR /&gt;&lt;BR /&gt;You are going to have to forgive me a bit here as I am pretty new to VMS and programming. I'm understanding the general idea of how the f$search &amp;amp; parse are operating.&lt;BR /&gt;&lt;BR /&gt;I have created the DCL script and called it rename.com. Whenever I try to run it I'm getting &lt;BR /&gt;&lt;BR /&gt; @rename&lt;BR /&gt;%DCL-W-IVKEYW, unrecognized keyword - check validity and spelling&lt;BR /&gt; \EXTENSION\&lt;BR /&gt;&lt;BR /&gt;I'm obviously doing something basic wrong here.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;Ben</description>
      <pubDate>Fri, 23 Jan 2009 21:07:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343939#M16048</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T21:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343940#M16049</link>
      <description>&lt;BR /&gt;Ben, &lt;BR /&gt;&lt;BR /&gt;Check out: $help lexi f$parse arg&lt;BR /&gt;&lt;BR /&gt;Jan wrote: $ ext = f$parse(next,,,"extention") - "."&lt;BR /&gt;Jan meant: $ ext = f$parse(next,,,"TYPE") - "."&lt;BR /&gt;&lt;BR /&gt;Jan's solution uses integer calculation.&lt;BR /&gt;Thje description of your problem suggested STRING manipulation to me.&lt;BR /&gt;&lt;BR /&gt;Suggested code ('works for me' :-)&lt;BR /&gt;&lt;BR /&gt;$loop:&lt;BR /&gt;$ next = f$search("benbad.*")&lt;BR /&gt;$ if next .eqs. "" then goto done&lt;BR /&gt;$ ext = f$parse(next,,,"TYPE") - ".3"&lt;BR /&gt;$ rename/log 'next' .0'ext&lt;BR /&gt;$ goto loop&lt;BR /&gt;$done:&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jan 2009 21:15:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343940#M16049</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-01-23T21:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343941#M16050</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;Hein (Hi Hein, still sorry for missing our bridge appointment because of medical reasons last year, all the more since bootcamp for 2009 is cancelled!) is right of course.&lt;BR /&gt;My bad, I did not check the docs.&lt;BR /&gt;&lt;BR /&gt;As for Hein's variant:&lt;BR /&gt;&lt;BR /&gt;- ANY extension starting with the digit 3 would also be done, such as .3ABC, any in the 30's, any 3000's, any 30000's.&lt;BR /&gt;&lt;BR /&gt;- my solution will also rename 4nn to 1nn, 5nn to 2nn, etc.&lt;BR /&gt;Check which is relevant to you!!&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jan 2009 21:29:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343941#M16050</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2009-01-23T21:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343942#M16051</link>
      <description>Thanks for that&lt;BR /&gt;&lt;BR /&gt;I'm getting somewhere with this now&lt;BR /&gt;The BENIN files are now showing as &lt;BR /&gt;BENIN.10&lt;BR /&gt;BENIN.11&lt;BR /&gt;BENIN.12&lt;BR /&gt;BENIN.14&lt;BR /&gt;&lt;BR /&gt;That was using&lt;BR /&gt;&lt;BR /&gt;$loop:&lt;BR /&gt;$ next = f$search("benin.*")&lt;BR /&gt;$ if next .eqs. "" then goto done&lt;BR /&gt;$ ext = f$parse(next,,,"type") - "."&lt;BR /&gt;$ if f$type(ext) .nes. "INTEGER" then goto done&lt;BR /&gt;$ if ext .lt. 300 then goto done&lt;BR /&gt;$ nwext = ext - 300&lt;BR /&gt;$ rename 'next' *.'nwext'&lt;BR /&gt;$ goto loop&lt;BR /&gt;$done:&lt;BR /&gt;&lt;BR /&gt;Unfortunately for the program to process these files they need the .0 before the extention&lt;BR /&gt;ie&lt;BR /&gt;BENIN.010&lt;BR /&gt;BENIN.011&lt;BR /&gt;&lt;BR /&gt;I think I'm going to have to do a bit of research into this tonight.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Jan 2009 21:48:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343942#M16051</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T21:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343943#M16052</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;Ok, with all due respect to Jan and Hein, this is why I try not to post code more than a line or so in length. &lt;BR /&gt;&lt;BR /&gt;It is VERY dangerous to run code WITHOUT knowing precisely how it functions. It is easy to run something using CUT/PASTE that can cost dearly (I do presume that the directory was backed up BEFORE running this procedure).&lt;BR /&gt;&lt;BR /&gt;The line:&lt;BR /&gt;&lt;BR /&gt;nwext = ext - 300&lt;BR /&gt;&lt;BR /&gt;Will subtract 300 from the number. The default for numeric-&amp;gt;string conversion in DCL is the minimum number of digits. &lt;BR /&gt;&lt;BR /&gt;In this instant case of all the numbers being between 300 and 399 inclusive, the problem can be corrected by changing the RENAME command:&lt;BR /&gt;&lt;BR /&gt;$ rename 'next' *.'nwext&lt;BR /&gt;&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;$ rename 'next' *.0'nwext&lt;BR /&gt;&lt;BR /&gt;For a more general fix, one will need to look up the F$FAO lexical function and use the formatting options to reformat the name in whatever format is desired (e.g., hex, octal, decimal).  One can also do other transformations as needed, if one wants to be more creative.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Fri, 23 Jan 2009 22:13:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343943#M16052</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2009-01-23T22:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343944#M16053</link>
      <description>Thankyou everyone for your help.&lt;BR /&gt;I really have learned a lot tonight&lt;BR /&gt;My problem has now been solved thanks to the help from all of you.&lt;BR /&gt;&lt;BR /&gt;All files are now ready for processing (I did experiment on some test files that I created earlier)&lt;BR /&gt;&lt;BR /&gt;I owe you all a pint.&lt;BR /&gt;&lt;BR /&gt;When time allows I must learn some more DCL.&lt;BR /&gt;Incidenatally what kind of systems are you guys using?&lt;BR /&gt;We have a load of VAX 4000 machines &lt;BR /&gt;&lt;BR /&gt;Bye for now&lt;BR /&gt;BM</description>
      <pubDate>Fri, 23 Jan 2009 22:35:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343944#M16053</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-23T22:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343945#M16054</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;Glad to be of assistance!&lt;BR /&gt;&lt;BR /&gt;VAX 4000 systems are one of the later generations of VAX systems.&lt;BR /&gt;&lt;BR /&gt;In my lab, my systems range from MicroVAX II systems up through Alpha to Itanium.&lt;BR /&gt;&lt;BR /&gt;Since DCL is the native scripting and command language, it is very useful. The best information is in the documentation set. Recent versions are available under "Documentation" at &lt;A href="http://www.hp.com/go/openvms" target="_blank"&gt;http://www.hp.com/go/openvms&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;While some details of DCL have been extended since the last VAX release, the language as a whole has been completely stable for a LONG time.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Sat, 24 Jan 2009 06:13:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343945#M16054</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2009-01-24T06:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343946#M16055</link>
      <description>Ben,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;I owe you all a pint.&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Thank you very much. At the time you wrote that, I was having a Grimbergen Triple. For those who do not know: the Monastry of the Belgian village Grimbergen founded a brewery in 1128 (yes, nearly 900 years ago!)&lt;BR /&gt;The Triple is a high-fermenting yellow beer with a lot of body ("Stammwuerze") and 9% EtOH.&lt;BR /&gt;&lt;BR /&gt;But on expressing your thanks in the Forum, please review&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Sat, 24 Jan 2009 13:22:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343946#M16055</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2009-01-24T13:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343947#M16056</link>
      <description>Ah, one more&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;Incidenatally what kind of systems are you guys using?&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;I have 2 Alpha 1000 systems at home. (plus 2 Vax 3100, but those have not seen any electricity since I moved in 2001, so they probably don't count)&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Sat, 24 Jan 2009 13:26:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343947#M16056</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2009-01-24T13:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343948#M16057</link>
      <description>Ben&amp;gt;&amp;gt; owe you all a pint.&lt;BR /&gt;Jan&amp;gt; Thank you very much. At the time you wrote that, I was having a Grimbergen Triple&lt;BR /&gt;&lt;BR /&gt;And I was enjoying a Shipyard seasonal (Prelude). I had a Grimbergen earlier this month.. in Eindhoven. Not my favourite, but I keep trying. Maybe some day. &lt;BR /&gt;For abbey beers I stick to the 'dubbel' (La Trappe). Martha's Exchange here in Nashua has a reasonable version of it on draft right now.&lt;BR /&gt;&lt;BR /&gt;Ben&amp;gt;&amp;gt; Incidenatally what kind of systems are you guys using?&lt;BR /&gt;&lt;BR /&gt;I 'tested' your request on my RX2620 Itanium.&lt;BR /&gt;In my lab I have a VaxStation 4000/60(?), 2xDS10, rx2620, rx2600, msa1000+14drives, 16/2 fibreswitch, 24xGigabit network, Decserver90m, BA356, DS2100, DL380, Linux ThinClient as 'terminal' for consoles/webbrowsing. Ebay!&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 24 Jan 2009 15:08:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343948#M16057</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2009-01-24T15:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: renaming files help</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343949#M16058</link>
      <description>Thanks.&lt;BR /&gt;&lt;BR /&gt;I was having a bottle of Adnams Broadside (Suffolk Ale)when the file renames had completed.&lt;BR /&gt;&lt;BR /&gt;I'm familiar with Grimbergen beers, they can be found from time to time in shops &amp;amp; bars here (have only tried the one with the yellow label). I really like those Abbey beers. I want to try them all.&lt;BR /&gt;&lt;BR /&gt;Cheers Guys</description>
      <pubDate>Mon, 26 Jan 2009 09:32:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/renaming-files-help/m-p/4343949#M16058</guid>
      <dc:creator>ben_moore34</dc:creator>
      <dc:date>2009-01-26T09:32:18Z</dc:date>
    </item>
  </channel>
</rss>

