<?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: SAS UNZIP command in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234550#M16952</link>
    <description>&lt;P&gt;Can you remote desktop onto your server? It's normally easiest to get the zip command right out of a dos prompt and only then incorporate it into SAS.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2015 08:42:06 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2015-11-13T08:42:06Z</dc:date>
    <item>
      <title>SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234532#M16947</link>
      <description>&lt;P&gt;Hello friends - please help me on how i can unzip files using sas 9.1 on win 2003 server? below code is not working so far,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;BR /&gt;x unzip "d:\test\*.zip" "d:\test\";&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 00:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234532#M16947</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T00:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234533#M16948</link>
      <description>&lt;P&gt;Do you actually have an unzip command installed on your server?&lt;/P&gt;
&lt;P&gt;Most unzip commands I have seen can only operate on one zip file at a time so you could not use a wildcard in the name of the zip file.&lt;/P&gt;
&lt;P&gt;If you do not know the name of your ZIP file then perhaps you want to first use the DIR command to find the name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="line-height: 20px;"&gt;Wrapping the X command with a null data step does nothing for either of them. &amp;nbsp;Try using the PIPE engine on an INFILE statement instead. That way your data step can read any messages that the command generates.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   infile "unzip d:\myarchive.zip" pipe ;
   input ;
   put _infile_;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Nov 2015 00:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234533#M16948</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-11-13T00:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234535#M16949</link>
      <description>&lt;P&gt;so can we use wildcard with this?&amp;nbsp;&amp;nbsp;and we will also need to provide destination directory too, right? i tried below code but its not unzipping files -&amp;nbsp;thanks&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; _null_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token statement"&gt;infile&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"&lt;FONT color="#0000FF"&gt;unzip &lt;STRONG&gt;d:\test\*.zip&lt;/STRONG&gt; &lt;STRONG&gt;d:\test\&lt;/STRONG&gt;&lt;/FONT&gt;"&lt;/SPAN&gt; pipe &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token keyword"&gt;input&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token keyword"&gt;put&lt;/SPAN&gt; _infile_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 00:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234535#M16949</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T00:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234537#M16950</link>
      <description>&lt;P&gt;Getting the quotes right with an X command can be tricky. &amp;nbsp;Try switching to %SYSEXEC, which doesn't need as many quotes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%sysexec unzip "d:\test\*.zip" "d:\test\";&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 03:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234537#M16950</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-11-13T03:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234545#M16951</link>
      <description>&lt;P&gt;sorry but it didn't work somehow,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%sysexec unzip "d:\test\*.zip" "d:\test\";&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 05:40:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234545#M16951</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T05:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234550#M16952</link>
      <description>&lt;P&gt;Can you remote desktop onto your server? It's normally easiest to get the zip command right out of a dos prompt and only then incorporate it into SAS.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 08:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234550#M16952</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-11-13T08:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234557#M16953</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the purpose - i.e. are you trying to create some sort of automation? &amp;nbsp;Describe the scenario, will this be a once off, routine, what happens to existing files, how do you want to handle exceptions etc. &amp;nbsp;If its a once off then there is no point coding it. &amp;nbsp;If it is a routine automation, then speak to your IT group who will likely have some sort of ftp + unpack script and should be able to help with setting it up. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 09:16:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234557#M16953</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-11-13T09:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234575#M16955</link>
      <description>&lt;P&gt;Have you tried the simple version? &amp;nbsp;This is the sort of command I would expect to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Directly:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;unzip d:\test\*.zip&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From SAS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%sysexec unzip d:\test\*.zip;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which command works directly from the operating system when you are not trying to add SAS to the mix?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 12:14:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234575#M16955</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-11-13T12:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234621#M16957</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/26689"&gt;@woo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;so can we use wildcard with this?&amp;nbsp;&amp;nbsp;and we will also need to provide destination directory too, right? i tried below code but its not unzipping files -&amp;nbsp;thanks&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; _null_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token statement"&gt;infile&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"&lt;FONT color="#0000FF"&gt;unzip &lt;STRONG&gt;d:\test\*.zip&lt;/STRONG&gt; &lt;STRONG&gt;d:\test\&lt;/STRONG&gt;&lt;/FONT&gt;"&lt;/SPAN&gt; pipe &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token keyword"&gt;input&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   &lt;SPAN class="token keyword"&gt;put&lt;/SPAN&gt; _infile_&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You need to tell use what SAS wrote in the log when you ran that command? &amp;nbsp;Did you get an error that the PIPE engine is not allowed? Did you get an error message from DOS/Windows that the UNZIP command was not found? &amp;nbsp;Did you get an error message from the UNZIP command?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 14:44:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234621#M16957</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-11-13T14:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234656#M16958</link>
      <description>&lt;P&gt;yes i can remote server from my local machine, that is how i am accessing server...Also this will be daily script,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 20:04:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234656#M16958</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T20:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234674#M16959</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is not working from SAS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%sysexec unzip d:\test\*.zip;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 18:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234674#M16959</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T18:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234690#M16962</link>
      <description>&lt;P&gt;OK, so what works from a DOS prompt?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Find a working DOS command, then we can make it executable from a SAS program.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 19:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234690#M16962</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-11-13T19:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234692#M16963</link>
      <description>&lt;P&gt;i tried running below command from cmd prompt and its unzipping files,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;command exactly looks like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;d:\test&amp;gt;unzip *.zip&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 20:11:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234692#M16963</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T20:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234695#M16964</link>
      <description>&lt;P&gt;Assuming that you re-zip a file or two in that folder, what happens when you try either of these:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;x 'unzip d:\test\*.zip';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%sysexec unzip d:\test\*.zip;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you get an error message? &amp;nbsp;Does nothing happen?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 20:20:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234695#M16964</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-11-13T20:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234711#M16965</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran both command one by one and for both command line its&amp;nbsp;&lt;SPAN&gt;prompting 2 windows, "The SAS system x command window is active" window and "&lt;/SPAN&gt;&lt;SPAN&gt;cmd command prompt" windows. sas system x command window saying - the X command is active. Enter EXIT at the promt in the X command window to reactivate this SAS session.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 21:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234711#M16965</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T21:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234714#M16967</link>
      <description>&lt;P&gt;I also tried running both code after putting brand new zipped file (unprocessed before),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;x 'unzip d:\test\*.zip';&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;run fine and did nothing&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%sysexec unzip d:\test\*.zip;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;prompting same two windows as i mentioned above&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2015 21:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234714#M16967</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-13T21:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234786#M16980</link>
      <description>&lt;P&gt;You need to set option "options noxwait;" as else your SAS session waits for the Dos shell&amp;nbsp;to exit - which never happens.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/hostwin/67962/HTML/default/viewer.htm#n0xwt90ik8vxdrn13708w6n3nm4o.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hostwin/67962/HTML/default/viewer.htm#n0xwt90ik8vxdrn13708w6n3nm4o.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Nov 2015 23:32:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234786#M16980</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-11-14T23:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234801#M16981</link>
      <description>&lt;P&gt;I agree with Patrick ... NOXWAIT is required, and may be all that is missing at this point. &amp;nbsp;If the results are still not successful, I would try breaking the steps into pieces as follows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options noxwait;&lt;/P&gt;
&lt;P&gt;x 'cd d:\test';&lt;/P&gt;
&lt;P&gt;x 'dir';&lt;/P&gt;
&lt;P&gt;x 'unzip *.zip';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The DIR command isn't really necessary once things are working properly, but it may help diagnose what is happening. &amp;nbsp;I'm hoping this works, because after this I'm out of ideas.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2015 13:19:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234801#M16981</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-11-15T13:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAS UNZIP command</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234818#M16982</link>
      <description>&lt;P&gt;infect i was using options noxwait, and i was prompting that message...don't know why..but appreciate your&amp;nbsp;efforts and time...Thank you so much...&lt;/P&gt;</description>
      <pubDate>Sun, 15 Nov 2015 18:42:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-UNZIP-command/m-p/234818#M16982</guid>
      <dc:creator>woo</dc:creator>
      <dc:date>2015-11-15T18:42:01Z</dc:date>
    </item>
  </channel>
</rss>

