<?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: Need unix command when we work with SAS in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923536#M44591</link>
    <description>&lt;P&gt;There are literally hundreds of Unix commands and they vary in syntax between Unix flavours. If you have a specific requirement then post what it is but you should also just be able to google and find the command you want anyway.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2024 04:26:16 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2024-04-09T04:26:16Z</dc:date>
    <item>
      <title>Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923533#M44590</link>
      <description>&lt;P&gt;I want to know which UNIX command generally uses when we work with SAS. I know some of the commands like &lt;STRONG&gt;CP, NO HUP&lt;/STRONG&gt;, but I want to know more which we can use on a daily basis while we work with SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 03:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923533#M44590</guid>
      <dc:creator>ravi999985</dc:creator>
      <dc:date>2024-04-09T03:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923536#M44591</link>
      <description>&lt;P&gt;There are literally hundreds of Unix commands and they vary in syntax between Unix flavours. If you have a specific requirement then post what it is but you should also just be able to google and find the command you want anyway.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 04:26:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923536#M44591</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-04-09T04:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923539#M44592</link>
      <description>&lt;P&gt;Just a few off the top of my head&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;rm - removes a file or directory (directory must be empty)&lt;/LI&gt;
&lt;LI&gt;mv - moves (renames) a file or directory&lt;/LI&gt;
&lt;LI&gt;cp - copies a file&lt;/LI&gt;
&lt;LI&gt;mkdir - creates a directory&lt;/LI&gt;
&lt;LI&gt;cd - changes to a directory&lt;/LI&gt;
&lt;LI&gt;pwd - shows the current directory&lt;/LI&gt;
&lt;LI&gt;find - finds files in a directory tree&lt;/LI&gt;
&lt;LI&gt;ls - lists contents of a directory&lt;/LI&gt;
&lt;LI&gt;grep - finds text in a file or input stream&lt;/LI&gt;
&lt;LI&gt;head - displays top of a file&lt;/LI&gt;
&lt;LI&gt;tail - displays end of a file&lt;/LI&gt;
&lt;LI&gt;wc - counts words, lines, characters in a file&lt;/LI&gt;
&lt;LI&gt;ps - lists current processes&lt;/LI&gt;
&lt;LI&gt;date - displays dates (current, or in relation to another date)&lt;/LI&gt;
&lt;LI&gt;pg, more, less - displays files one page at a time&lt;/LI&gt;
&lt;LI&gt;sort - sorts an input stream&lt;/LI&gt;
&lt;LI&gt;cut - extracts columns from an input stream&lt;/LI&gt;
&lt;LI&gt;who - shows currently logged in users, but can also (-b) display the last time the system was started&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;It is very important to understand the piping mechanism, which allows to direct the output of one command to the input of another, e.g.&lt;/P&gt;
&lt;PRE&gt;ls | grep x&lt;/PRE&gt;
&lt;P&gt;displays all directory entries having an x in their name, or&lt;/P&gt;
&lt;PRE&gt;sort &amp;lt; a &amp;gt; b&lt;/PRE&gt;
&lt;P&gt;reads file a, and writes the sorted output to file b.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also learn the syntax of the shell (most often bash), so you can write scripts with conditions and loops.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 06:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923539#M44592</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-04-09T06:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923543#M44593</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Maxims-of-Maximally-Efficient-SAS-Programmers/ta-p/352068/show-comments/false" target="_self"&gt;#Maxim6&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try YT video tutorials:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/results?search_query=basic+unix+commands" target="_blank"&gt;https://www.youtube.com/results?search_query=basic+unix+commands&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and of course: google -&amp;gt; "basic unix commands" , just from the top:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.math.utah.edu/lab/unix/unix-commands.html" target="_blank"&gt;https://www.math.utah.edu/lab/unix/unix-commands.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.geeksforgeeks.org/essential-linuxunix-commands/" target="_blank"&gt;https://www.geeksforgeeks.org/essential-linuxunix-commands/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&lt;A href="https://kb.iu.edu/d/afsk" target="_blank"&gt;https://kb.iu.edu/d/afsk&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 08:32:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923543#M44593</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2024-04-09T08:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923544#M44594</link>
      <description>&lt;P&gt;P.S. One comment. Remember, SAS allows you to write code which is OS independent. Try to use this functionality as often as possible, to make your programs easily portable without need of changing source code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 08:35:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/923544#M44594</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2024-04-09T08:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Need unix command when we work with SAS</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/924700#M44625</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/464830"&gt;@ravi999985&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It depends on what you are doing. &lt;BR /&gt;1.For any one using SAS EG for using SAS on a UNIX server,&amp;nbsp; a very minimal knowledge of UNIX is sufficient (case sensitivity,&amp;nbsp; file /path conventions etc, may be ssh/scp).&lt;/P&gt;
&lt;P&gt;2.For someone using the Unix shell to write and execute SAS code, write/use shell scripts then a good working knowledge of the shell (BASH/KSH whichever that is&amp;nbsp; being used) is needed. Focus on developing a knowledge of shell scripting/programming rather than memorizing a few commands.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 14:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Need-unix-command-when-we-work-with-SAS/m-p/924700#M44625</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-04-17T14:11:35Z</dc:date>
    </item>
  </channel>
</rss>

