Steve,<div><br></div><div>On Fri, Feb 25, 2011 at 12:53 PM, Steve VanSlyck <span dir="ltr">&lt;<a href="mailto:s.vanslyck@spamcop.net">s.vanslyck@spamcop.net</a>&gt;</span> wrote:</div><div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

No offense taken and you are quite correct. I just want some training<br>
wheels. I don&#39;t wear them long but<br>
<br>
ls /?<br>
<br>
brings up page after page after page of stuff and it&#39;ll take me an hour to<br>
figure out how to do<br>
<br>
dir /s -shra<br>
<br>
just to find one little file to get beyond the problem of the moment.<br></blockquote><div><br></div><meta http-equiv="content-type" content="text/html; charset=utf-8"><div>ls -R</div><div><br></div><div>is the equivalent to dir /s -h  Hidden files are ones that begin with a dot.  There isn&#39;t really a one-for-one Windows-to-Linux concept of system files or the archive bit in linux file systems.<br>

<br></div><div>But there is a more powerful alternative.  You said you just need to &quot;find one little file&quot;.  There is a find command that will do exactly what you want.</div><div><br></div><div>To find all files with a .doc extension from the current directory:</div>

<div><br></div><div>find . -name &quot;*.doc&quot;</div><div><br></div><div>To find all files with &quot;work&quot; or &quot;Work&quot; or &quot;WORK&quot; (etc) in the name (remember linux filesystems are case sensitive):</div>

<div><br></div><div>find . -iname &quot;*work*&quot;</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
For CD\ I&#39;m frustrated because I&#39;m in my home directory and<br>
<br>
cd ../../System/Settings<br>
<br>
doesn&#39;t take me to<br>
<br>
/System/Settings<br>
<br>
Instead I have to<br>
<br>
cd ..<br>
cd ..<br>
cd /System/Settings (or maybe it was cd System/Settings<br></blockquote><div><br></div><div> On Linux &quot;/&quot; is like &quot;C:&quot;.  You definitely can do cd ../../System/Settings, exactly like Windows.  If System/Settings is two parents back.</div>

<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
It&#39;s real basic syntax that needs to be releared but in the nonce I want to<br>
get schtuff done.........<br></blockquote><div><br></div><div>When I first moved from DOS/Windows to UNIX (HPUX then Solaris then Linux) I used an alias file to map dir to ls, etc.  It did help.  But as others said, its good to learn the native commands as they are much more powerful.</div>

<div><br></div><div>Here are some Linux/Dos cheatsheets you might find helpful:</div><div><br></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><a href="http://www.yolinux.com/TUTORIALS/unix_for_dos_users.html">http://www.yolinux.com/TUTORIALS/unix_for_dos_users.html</a></div>

<div><br></div><div>and</div><div><br></div><div><meta http-equiv="content-type" content="text/html; charset=utf-8"><a href="http://rick.cogley.info/goodies/reference/linux-dos-command-equivalents.php">http://rick.cogley.info/goodies/reference/linux-dos-command-equivalents.php</a></div>

<div><br></div><div>Cheers,</div><div>Eric</div><div><br></div></div></div>