unix Questions - RunSubmit.com most recent 30 from http://www.runsubmit.com 2010-07-29T19:53:49Z http://www.runsubmit.com/feeds/tag/unix http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://www.runsubmit.com/questions/174/how-do-you-determine-the-size-of-sas-dataset-on-unix How do you determine the size of sas dataset on UNIX? NextLevel-IS 2009-12-18T15:41:31Z 2010-02-15T02:53:39Z <p>Does anyone know of any SAS functions / techniques for obtaining the SIZE of files / datasets in UNIX directories? (eg in MB or GB).</p> http://www.runsubmit.com/questions/63/sas-enterprise-guide-unix-work-library-viewing-files SAS Enterprise Guide UNIX WORK library - viewing files NextLevel-IS 2009-10-26T16:58:43Z 2009-10-26T18:46:57Z <p>How do I view the file below in Enterprise Guide (v 4.1 ) ??</p> <pre><code>%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ; data _null_; file "&amp;libWORK./MYFILE.htm"; put '&lt;html&gt;' / ' &lt;head&gt;'/ ' &lt;title&gt; A Title &lt;/title&gt;'/ '&lt;/head&gt; &lt;body&gt; some content &lt;/body&gt; &lt;/html&gt;'; run; </code></pre>