unix Questions - RunSubmit.commost recent 30 from http://www.runsubmit.com2010-07-29T19:53:49Zhttp://www.runsubmit.com/feeds/tag/unixhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://www.runsubmit.com/questions/174/how-do-you-determine-the-size-of-sas-dataset-on-unixHow do you determine the size of sas dataset on UNIX?NextLevel-IS2009-12-18T15:41:31Z2010-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-filesSAS Enterprise Guide UNIX WORK library - viewing filesNextLevel-IS2009-10-26T16:58:43Z2009-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 "&libWORK./MYFILE.htm";
put '<html>' /
' <head>'/
' <title> A Title </title>'/
'</head> <body> some content </body> </html>';
run;
</code></pre>