<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[command to compile and execute code in COBOL]]></title><description><![CDATA[<p dir="auto">I have a cobalt code and I would like to compile it</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/16209/command-to-compile-and-execute-code-in-cobol</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 01:30:29 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/16209.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 24 Aug 2018 00:04:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to command to compile and execute code in COBOL on Fri, 24 Aug 2018 13:29:05 GMT]]></title><description><![CDATA[<p dir="auto">… For example, here’s an <a href="http://downloads.sourceforge.net/project/npp-plugins/" rel="nofollow ugc">NppExec</a> script that I use to save, compile, and run a standalone C++ program:</p>
<pre><code>npp_save
cd "$(CURRENT_DIRECTORY)"
g++ "$(FILE_NAME)" -o "$(NAME_PART)"
npp_run cmd.exe /k "$(NAME_PART)"
</code></pre>
<p dir="auto">For compiling cobol, you would use your cobol compiler rather than “g++”, and would have to format the command line appropriately; if your compiler is not in your path, you will have to do something like “c:\full\path\to\compileCobol.exe”.</p>
<p dir="auto">If you don’t want to also run the program when compiled, then you could just remove the “npp_run …” command from the NppExec script.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/34302</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/34302</guid><dc:creator><![CDATA[PeterJones]]></dc:creator><pubDate>Fri, 24 Aug 2018 13:29:05 GMT</pubDate></item><item><title><![CDATA[Reply to command to compile and execute code in COBOL on Fri, 24 Aug 2018 12:23:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/davila-w.w" aria-label="Profile: Davila-w.w">@<bdi>Davila-w.w</bdi></a></p>
<p dir="auto">I would use npp_exec plugin in order to achieve this but you can use the standard <strong>Run</strong> menu as well, depends how flexible you want to be.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/34300</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/34300</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Fri, 24 Aug 2018 12:23:28 GMT</pubDate></item></channel></rss>