<?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: DCL script doubts in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527279#M97052</link>
    <description>The VERY BASIC solution for your problems is EDUCATION.&lt;BR /&gt;You should have a fair understanding of the OS's you're dealing with. The more different these are, the more important this is - as you have experienced.&lt;BR /&gt;Without that knowlegde, you'll keep running into issues because you have no clue on what it means.&lt;BR /&gt;&lt;BR /&gt;If you look around (on openvms.org, for instance) you'll find a lot of places to egt training and gain experience - free, if you like. &lt;BR /&gt;If you have access to a VMS system, use HELP on that system to find out.</description>
    <pubDate>Tue, 24 Nov 2009 14:25:58 GMT</pubDate>
    <dc:creator>Willem Grooters</dc:creator>
    <dc:date>2009-11-24T14:25:58Z</dc:date>
    <item>
      <title>DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527261#M97034</link>
      <description>hi ,&lt;BR /&gt; this is vinay i have doubt abt converting following instructions which r in DCl to unix equivalents can anybody help ?&lt;BR /&gt;&lt;BR /&gt;f$trlnm&lt;BR /&gt;set noverify&lt;BR /&gt;set verify&lt;BR /&gt;f$parse&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;submit/que=sjmpsc$batch/after="tomorrow+19:00"/log=cer_mgr_log:sjmpsc_oracle_backups.log -&lt;BR /&gt;/noprint/notify/keep/restart cust_proc:sjmpsc_oracle_backups.com&lt;BR /&gt;&lt;BR /&gt;BACKUP/LOG/NEW&lt;BR /&gt;&lt;BR /&gt;please help me</description>
      <pubDate>Wed, 04 Nov 2009 08:04:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527261#M97034</guid>
      <dc:creator>DCL script to shell scr</dc:creator>
      <dc:date>2009-11-04T08:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527262#M97035</link>
      <description>Hi,&lt;BR /&gt;Might I refer you to the book&lt;BR /&gt;"Unix for OpenVMS users" ?&lt;BR /&gt;See:&lt;BR /&gt;&lt;A href="http://www.amazon.com/UNIX-OpenVMS-Users-Second-Technologies/dp/1555581552" target="_blank"&gt;http://www.amazon.com/UNIX-OpenVMS-Users-Second-Technologies/dp/1555581552&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Kris (aka Qkcl)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Nov 2009 08:40:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527262#M97035</guid>
      <dc:creator>Kris Clippeleyr</dc:creator>
      <dc:date>2009-11-04T08:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527263#M97036</link>
      <description>set noverify -&amp;gt; sh +x &lt;BR /&gt;set verify -&amp;gt;   sh -x &lt;BR /&gt;&lt;BR /&gt;The lexicals functions do not exist in Unixland and it is a pity. So you can forget about f$parse, f$trnlnm (and the logical names do not exist too).&lt;BR /&gt;&lt;BR /&gt;The Unix way is &lt;BR /&gt;some_command | grep some_text | cut ...&lt;BR /&gt;(cut is more or less a f$edit on a string)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Nov 2009 09:51:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527263#M97036</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2009-11-04T09:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527264#M97037</link>
      <description>Recently -in a different forum- somebody even asked for a general translator DCL -&amp;gt; shell, really!&lt;BR /&gt;Even if the syntax can be "translated", the semantics of commands and functions simply have no equivalent in "unix" land.&lt;BR /&gt;There are some implementations of DCL as a shell or interpreter (VX/DCL from sector7.com for example), which might be the easier way to port DCL procedures.&lt;BR /&gt;&lt;BR /&gt;f$trnlnm: there is no such thing as logical names in unices. &lt;BR /&gt;  shell variables come near in some cases, (symbolic) links for files may replace some uses.&lt;BR /&gt;One always has to see each individual use of f$trnlnm to understand what is wanted: is it simply a call to see if a name or variable  is defined ?&lt;BR /&gt;is it a call to extract individual items of a search list ?&lt;BR /&gt;is it a logical name translation to use and handle a file-specification defined in the logical ?&lt;BR /&gt;Each of the uses requires a different "unix"  equivalent (if any).&lt;BR /&gt;&lt;BR /&gt;f$parse: "unix" has no strict file-specification syntax like VMS, so it depends again on the individual f$parse call  to find a "unix" equivalent:&lt;BR /&gt; parse to find the device a file is on ? there is no device as part of a "unix" filespec, only a "root" directory if it begins with "/".&lt;BR /&gt; parse with default or related specs to complete a file-specification ??&lt;BR /&gt; parse to extract the file-name only ? (hint: basename in "unix")&lt;BR /&gt; parse to extract the file type ? (there is no equivalent in "unix", only widespread conventions to use the rest after the last dot in a filespec as "type").&lt;BR /&gt; parse to remove the version number ? there is no such thing in "unix".&lt;BR /&gt;&lt;BR /&gt;submit: there is no standard batch queuing facility in "unix": You have to explicitly see the target "unix" system to find out its batch facility, all have "at", some "batch" or "nqs".&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Nov 2009 10:37:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527264#M97037</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2009-11-04T10:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527265#M97038</link>
      <description>You're going to have to convert DCL to bash and to Unix native utilities and such, or to use hardware emulation or such and run OpenVMS on the Unix box.  &lt;BR /&gt;&lt;BR /&gt;Or you might look to use contract with one of the organizations that sell conversion and porting and compatibility tools.&lt;BR /&gt;&lt;BR /&gt;If you've been contracted to provide this, then you're going to have to learn DCL and you're going to have to learn bash, and map the two.   This isn't a small base of knowledge, either; there aren't all that many folks that are really good at both bash and DCL.   &lt;BR /&gt;&lt;BR /&gt;And there are no direct mappings for any of the cited commands, either.&lt;BR /&gt;&lt;BR /&gt;Here are some related discussions:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/741" target="_blank"&gt;http://labs.hoffmanlabs.com/node/741&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/225" target="_blank"&gt;http://labs.hoffmanlabs.com/node/225&lt;/A&gt;</description>
      <pubDate>Wed, 04 Nov 2009 17:17:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527265#M97038</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-11-04T17:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527266#M97039</link>
      <description>&lt;BR /&gt;You may find some good information at this website...&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://rcr-www.med.nyu.edu/rcr/gcg/openvms_unix_differences.html" target="_blank"&gt;http://rcr-www.med.nyu.edu/rcr/gcg/openvms_unix_differences.html&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Nov 2009 23:23:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527266#M97039</guid>
      <dc:creator>Rick Retterer</dc:creator>
      <dc:date>2009-11-04T23:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527267#M97040</link>
      <description>On that link, I disagree with&lt;BR /&gt;&lt;BR /&gt;Unix -&amp;gt; Ctrl Z suspends a program&lt;BR /&gt;VMS -&amp;gt; nothing &lt;BR /&gt;&lt;BR /&gt;never heard of &lt;BR /&gt;$ set proc/suspend...&lt;BR /&gt;&lt;BR /&gt;???</description>
      <pubDate>Thu, 05 Nov 2009 08:04:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527267#M97040</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2009-11-05T08:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527268#M97041</link>
      <description>"The Unix way is&lt;BR /&gt;"some_command | grep some_text | cut ...&lt;BR /&gt;"(cut is more or less a f$edit on a string)&lt;BR /&gt;&lt;BR /&gt;Unless you are trying to do something very simple, you will probably find sequences like "do-something | grep | cut" to be, awkward if not painful.&lt;BR /&gt;&lt;BR /&gt;I'd recommend learning something like Perl. There are a number of tutorial sites on the web, and quite a few beginning Perl books available. Personally, I used "Learning Perl", by Randal L. Schwartz, for about a year before needing to get deeper in Perl.</description>
      <pubDate>Thu, 05 Nov 2009 15:31:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527268#M97041</guid>
      <dc:creator>Sheldon Smith</dc:creator>
      <dc:date>2009-11-05T15:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527269#M97042</link>
      <description>For some the older folks still around.&lt;BR /&gt;&lt;BR /&gt;edit by Digital Press in the Vax Users Series&lt;BR /&gt; &lt;BR /&gt;Title "UNIX for VMS Users" by Philip E. Bourne &lt;BR /&gt;&lt;BR /&gt;I have copy on the shelf next me, It does a good job .. aahh quality ! where have you been&lt;BR /&gt;&lt;BR /&gt;But to read this you have to quite knowledgeable in either Vms environment and/or Unix shell.&lt;BR /&gt;&lt;BR /&gt;Maybe you can get still hold of a copy (DP ISBN 1-55558-034-3).&lt;BR /&gt;&lt;BR /&gt;Enjoy life,&lt;BR /&gt;&lt;BR /&gt;Jean-Pierre. &lt;BR /&gt;</description>
      <pubDate>Thu, 05 Nov 2009 17:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527269#M97042</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2009-11-05T17:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527270#M97043</link>
      <description>As an aside to Labadie:&lt;BR /&gt;&lt;BR /&gt;Of the three basic non-executing states that are not resource-related or paging-related, SUSPEND is the "deepest" sleep, the others being HIBERNATE (HIB state) and Event Flag wait (LEF or CEF state).&lt;BR /&gt;&lt;BR /&gt;SET PROCESS process/SUSPEND puts the process in SUSP scheduler state.  SET PROCESS process/RESUME returns it to COM state.  &lt;BR /&gt;SET PROCESS process/SUSPEND was described (in my VMS Operations class) as a way to stop a runaway process from eating your CPU alive and yet let you change your mind if you later decided you wanted this process to run a little bit more.&lt;BR /&gt;&lt;BR /&gt;It has been a while since I played with these, but the main difference among the various voluntary sleep states is (I believe) that a SUSPENDED process cannot RESUME itself from an internal AST event.  A process that is suspended needs external help to wake up.&lt;BR /&gt;&lt;BR /&gt;By contrast, a hibernating process can execute an AST that performs a WAKE system service call on itself.  A process in a WAIT state can execute an AST that sets an event flag and again, release itself back to COM state.&lt;BR /&gt;&lt;BR /&gt;Regarding the mapping between UNIX &amp;amp; VMS functions, since the O/S are inherently different due to their different origins and growth paths, you will have to expect that some things don't map well.  &lt;BR /&gt;&lt;BR /&gt;For instance, OpenVMS "context" (a description of what a process can "see" at a given moment) includes a wider variety of possible things to be seen than are visible in most UNIX environments.  The differences in the way file-search paths work is also a big issue.&lt;BR /&gt;&lt;BR /&gt;I would seriously consider that at some point, a redesign of the application or process for the new environment.  A simple conversion is not going to work perfectly simply because the system "styles" don't map perfectly.&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Nov 2009 17:52:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527270#M97043</guid>
      <dc:creator>Richard W Hunt</dc:creator>
      <dc:date>2009-11-05T17:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527271#M97044</link>
      <description>how to create job queue in unix ?&lt;BR /&gt;init/queue instruction creates job queue in DCL I need an equivqlent command in unix</description>
      <pubDate>Sat, 21 Nov 2009 14:50:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527271#M97044</guid>
      <dc:creator>DCL script to shell scr</dc:creator>
      <dc:date>2009-11-21T14:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527272#M97045</link>
      <description>&lt;!--!*#--&gt;&amp;gt; how to create job queue in unix ?&lt;BR /&gt;&lt;BR /&gt;"unix" is not a very useful description of an&lt;BR /&gt;OS.  AIX, HP-UX, Solaris, Tru64, ... would be&lt;BR /&gt;more helpful.&lt;BR /&gt;&lt;BR /&gt;      man at&lt;BR /&gt;&lt;BR /&gt;      man -k queue&lt;BR /&gt;&lt;BR /&gt;      man queuedefs&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-60130/queuedefs.4.html" target="_blank"&gt;http://docs.hp.com/en/B2355-60130/queuedefs.4.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;VMS and UNIX(like) operating systems are&lt;BR /&gt;different.  Exact translations from one to&lt;BR /&gt;the other are generally not possible.  You&lt;BR /&gt;might do better if you try to learn more&lt;BR /&gt;about your particular UNIX(-like) operating&lt;BR /&gt;system(s), and quit trying to translate the&lt;BR /&gt;untranslatable.</description>
      <pubDate>Sat, 21 Nov 2009 15:02:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527272#M97045</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-11-21T15:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527273#M97046</link>
      <description>cron, launchd/launchctl, /usr/local/etc/periodic/, GNU batch, Condor or, well, most anything that a Google search or a trip through available listings including &lt;A href="http://en.wikipedia.org/wiki/Job_scheduler" target="_blank"&gt;http://en.wikipedia.org/wiki/Job_scheduler&lt;/A&gt; might show as available on your platform.&lt;BR /&gt;&lt;BR /&gt;As for Unix questions...&lt;BR /&gt;&lt;BR /&gt;HP-UX forum:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/familyhome.do?familyId=117" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/familyhome.do?familyId=117&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HP Linux forum:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/familyhome.do?familyId=118" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/familyhome.do?familyId=118&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;When posting questions, do consider not asking for a VMS feature by name; you're porting, which means you're going to be ripping out most of the OpenVMS features, and you will be replacing them with platform-specific alternatives.  The Unix folks won't know the features of OpenVMS like you or the folks here do, but they will know how to answer questions like "What are the recommended unix job scheduling software packages for [platform]", or similar.&lt;BR /&gt;&lt;BR /&gt;Asking Unix questions in an OpenVMS  forum serves to delay your port, and (unless you happen to hit a Unix user here in the forum) may not get you the best available or the most current answer(s) for your particular Unix platform.&lt;BR /&gt;</description>
      <pubDate>Sat, 21 Nov 2009 17:07:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527273#M97046</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-11-21T17:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527274#M97047</link>
      <description>thank you for the help.I am able to solve my most of the doubts.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$      name = f$getjpi(pid, "prcnam")&lt;BR /&gt;$      pgcnt = f$getjpi(pid, "ppgcnt")&lt;BR /&gt;$      wspeak = f$getjpi(pid, "wspeak")&lt;BR /&gt;$      astcur = f$getjpi(pid, "astcnt")&lt;BR /&gt;$      astmax = f$getjpi(pid, "astlm")&lt;BR /&gt;$      enqcur = f$getjpi(pid, "enqcnt") &lt;BR /&gt;$      enqmax = f$getjpi(pid, "enqlm")&lt;BR /&gt;$      pgcur = f$getjpi(pid, "pagfilcnt") &lt;BR /&gt;$      pgmax = f$getjpi(pid, "pgflquota") &lt;BR /&gt;$      filcur = f$getjpi(pid, "filcnt")&lt;BR /&gt;$      filmax = f$getjpi(pid, "fillm")&lt;BR /&gt;$      f$type(ctx)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;please check the attached file also.&lt;BR /&gt;can anybody help me in understanding these functions and how to get same vvalues in unix/linux</description>
      <pubDate>Mon, 23 Nov 2009 05:36:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527274#M97047</guid>
      <dc:creator>DCL script to shell scr</dc:creator>
      <dc:date>2009-11-23T05:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527275#M97048</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] how to get same vvalues in unix/linux&lt;BR /&gt;&lt;BR /&gt;&amp;gt; "unix" is not a very useful description of an&lt;BR /&gt;&amp;gt; OS.  AIX, HP-UX, Solaris, Tru64, ... would be&lt;BR /&gt;&amp;gt; more helpful.&lt;BR /&gt;&lt;BR /&gt;"unix/linux" is not much more helpful.&lt;BR /&gt;&lt;BR /&gt;Uh, rewrite the "unix/linux" kernel?  What&lt;BR /&gt;makes you think that these VMS parameters&lt;BR /&gt;have any analogues in "unix/linux"?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; please help me&lt;BR /&gt;&lt;BR /&gt;You don't seem to be paying attention.</description>
      <pubDate>Mon, 23 Nov 2009 11:20:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527275#M97048</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-11-23T11:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527276#M97049</link>
      <description>The vmsbackup tool; a tool that can read (but not write) BACKUP saveset on Mac OS X, Unix and Linux boxes:&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/817" target="_blank"&gt;http://labs.hoffmanlabs.com/node/817&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The bash analogs of DCL set noverify and set noon:&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/740" target="_blank"&gt;http://labs.hoffmanlabs.com/node/740&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;General list of DCL commands to bash commands:&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/741" target="_blank"&gt;http://labs.hoffmanlabs.com/node/741&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There are no analogs to the logical name mechanisms and services including sys$trnlnm, DEFINE command, and the f$trnlnm lexical function, though there are alternatives.   That DCL code will need to be replaced.&lt;BR /&gt;&lt;BR /&gt;Filename handling and filename parsing is completely different between Unix and Linux and that of OpenVMS; that code will need to be entirely replaced.&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Nov 2009 14:52:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527276#M97049</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-11-23T14:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527277#M97050</link>
      <description>i need to now what those functions actually return the values</description>
      <pubDate>Mon, 23 Nov 2009 17:44:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527277#M97050</guid>
      <dc:creator>DCL script to shell scr</dc:creator>
      <dc:date>2009-11-23T17:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527278#M97051</link>
      <description>Please talk to your manager or (depending on your organization) your project leader about your requirements and questions here.  &lt;BR /&gt;&lt;BR /&gt;Your manager (or project leader) is best positioned to provide you with the organizational and technical guidance and resources that you are seeking here.  &lt;BR /&gt;&lt;BR /&gt;Certainly point your manager (or project leader) to these ITRC discussions, too.&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Nov 2009 18:00:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527278#M97051</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-11-23T18:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527279#M97052</link>
      <description>The VERY BASIC solution for your problems is EDUCATION.&lt;BR /&gt;You should have a fair understanding of the OS's you're dealing with. The more different these are, the more important this is - as you have experienced.&lt;BR /&gt;Without that knowlegde, you'll keep running into issues because you have no clue on what it means.&lt;BR /&gt;&lt;BR /&gt;If you look around (on openvms.org, for instance) you'll find a lot of places to egt training and gain experience - free, if you like. &lt;BR /&gt;If you have access to a VMS system, use HELP on that system to find out.</description>
      <pubDate>Tue, 24 Nov 2009 14:25:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527279#M97052</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2009-11-24T14:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: DCL script doubts</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527280#M97053</link>
      <description>I am aware of very little available material on this topic area; on porting OpenVMS software to Unix platforms, and for porting code from DCL to bash.&lt;BR /&gt;&lt;BR /&gt;I've posted a very general porting sequence here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://labs.hoffmanlabs.com/node/225" target="_blank"&gt;http://labs.hoffmanlabs.com/node/225&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This is a very technical undertaking, regardless.&lt;BR /&gt;&lt;BR /&gt;Most any port requires detailed knowledge of both OpenVMS and of the target Unix platform; of the source and target of the port.  This knowledge might be known to one person, or it might be case where a programmer familiar with the application and with OpenVMS creates a general design and requirements specification for an engineer familiar with Unix to review and implement.   That design document does not and would not and should not include references to f$trnlnm or to logical names or another such OpenVMS features, but rather contains the purpose behind those references; the requirements and not the implementation.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Nov 2009 15:21:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-script-doubts/m-p/4527280#M97053</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2009-11-24T15:21:46Z</dc:date>
    </item>
  </channel>
</rss>

