If you&#39;d like, I&#39;d be more than happy to show you some stuff in a Google+ Hangout or a shared GNU Screen session on an SSH server.<br><br><div class="gmail_quote">On Thu, Nov 17, 2011 at 11:36 PM, Chuck Payne <span dir="ltr">&lt;<a href="mailto:terrorpup@gmail.com">terrorpup@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Thanks I have download the app, will try it. I am sys. admin by trade.<br>
I gotten good with bash, but now I am need to do better script, python<br>
seem the best path to take. A long with it, I am having to teach. So<br>
thank you for the help.<br>
<span class="HOEnZb"><font color="#888888"><br>
Chuck<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Thu, Nov 17, 2011 at 11:22 PM, Richard Bronosky &lt;<a href="mailto:Richard@bronosky.com">Richard@bronosky.com</a>&gt; wrote:<br>
&gt; I don&#39;t do RTFM, but I do use other acronyms like REPL, and you got that one<br>
&gt; right. It is a Read Evaluate Print Loop. I prefer to use and enhanced REPL<br>
&gt; that include tab completion, but you can just type python and get into a<br>
&gt; very basic one. (CTRL-D will get you out.)<br>
&gt; I&#39;m just really big on teaching people how to get answers. I manage<br>
&gt; developers for a living. I have noticed that it does them no good to give<br>
&gt; them answers if they don&#39;t know how to find them themselves.<br>
&gt;<br>
&gt; On Thu, Nov 17, 2011 at 10:56 PM, Chuck Payne &lt;<a href="mailto:terrorpup@gmail.com">terrorpup@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Richard,<br>
&gt;&gt;<br>
&gt;&gt; Sorry, I not the quick on terms. I am assuming RERL meas<br>
&gt;&gt; Read–eval–print_loop. What you are stating is good, but the problem is, I am<br>
&gt;&gt; stuck that is why I am asking for help. I am so gun shy about asking for<br>
&gt;&gt; help, because the standard response is usually RTFM. I gave up learning Perl<br>
&gt;&gt; because I could never get help.<br>
&gt;&gt;<br>
&gt;&gt; I will try what you have recommend.<br>
&gt;&gt;<br>
&gt;&gt; Chuck<br>
&gt;&gt;<br>
&gt;&gt; ---------- Forwarded message ----------<br>
&gt;&gt; From: Richard Bronosky &lt;<a href="mailto:Richard@bronosky.com">Richard@bronosky.com</a>&gt;<br>
&gt;&gt; Date: Thu, Nov 17, 2011 at 10:29 PM<br>
&gt;&gt; Subject: Re: [ale] Need help with a Python Script<br>
&gt;&gt; To: Atlanta Linux Enthusiasts &lt;<a href="mailto:ale@ale.org">ale@ale.org</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; Chuck,<br>
&gt;&gt; You really need to experiment at the REPL. That is the main reason for<br>
&gt;&gt; choosing a scripting language like python. I suggest installing<br>
&gt;&gt; ipython (or bpython) so that you get tab completion. The you would do<br>
&gt;&gt; this:<br>
&gt;&gt; $ ipython<br>
&gt;&gt; Python 2.4.3 (#1, Nov 11 2010, 13:30:19)<br>
&gt;&gt; Type &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;&gt;<br>
&gt;&gt; IPython 0.8.4 -- An enhanced Interactive Python.<br>
&gt;&gt; ?         -&gt; Introduction and overview of IPython&#39;s features.<br>
&gt;&gt; %quickref -&gt; Quick reference.<br>
&gt;&gt; help      -&gt; Python&#39;s own help system.<br>
&gt;&gt; object?   -&gt; Details about &#39;object&#39;. ?object also works, ?? prints more.<br>
&gt;&gt;<br>
&gt;&gt; In [1]: import os<br>
&gt;&gt;<br>
&gt;&gt; In [2]: os.get<br>
&gt;&gt; os.getcwd      os.getegid     os.geteuid     os.getgroups<br>
&gt;&gt; os.getlogin    os.getpgrp     os.getppid     os.getuid<br>
&gt;&gt; os.getcwdu     os.getenv      os.getgid      os.getloadavg  os.getpgid<br>
&gt;&gt;    os.getpid      os.getsid<br>
&gt;&gt;<br>
&gt;&gt; In [2]: os.gete<br>
&gt;&gt; os.getegid  os.getenv   os.geteuid<br>
&gt;&gt;<br>
&gt;&gt; In [2]: os.getenv(&#39;HOSTNAME&#39;)<br>
&gt;&gt; Out[2]: &#39;<a href="http://vm1.example.com" target="_blank">vm1.example.com</a>&#39;<br>
&gt;&gt;<br>
&gt;&gt; However, os.getenv can only get was is available as environment<br>
&gt;&gt; variables. You can check those at the terminal with the env command.<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Nov 17, 2011 at 10:23 PM, Stephen Haywood<br>
&gt;&gt; &lt;<a href="mailto:stephen@averagesecurityguy.info">stephen@averagesecurityguy.info</a>&gt; wrote:<br>
&gt;&gt; &gt; What version of Python are you using?<br>
&gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Stephen Haywood<br>
&gt;&gt; &gt; Information Security Consultant<br>
&gt;&gt; &gt; CISSP, GPEN, OSCP<br>
&gt;&gt; &gt; T: @averagesecguy<br>
&gt;&gt; &gt; W: <a href="http://averagesecurityguy.info" target="_blank">averagesecurityguy.info</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Ale mailing list<br>
&gt;&gt; &gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt; &gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; .!# RichardBronosky #!.<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Ale mailing list<br>
&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt;<br>
&gt;&gt; <a href="tel:%28678%29%20636-9678" value="+16786369678">(678) 636-9678</a><br>
&gt;&gt; -----------------------------------------<br>
&gt;&gt; Discover it! Enjoy it! Share it! openSUSE Linux.<br>
&gt;&gt; -----------------------------------------<br>
&gt;&gt; openSUSE -- <a href="http://en.opensuse.org/User:Terrorpup" target="_blank">en.opensuse.org/User:Terrorpup</a><br>
&gt;&gt; openSUSE Ambassador/openSUSE Member<br>
&gt;&gt; skype,twiiter,identica,friendfeed -- terrorpup<br>
&gt;&gt; freenode(irc) --terrorpup/lupinstein<br>
&gt;&gt; Register Linux Userid: 155363<br>
&gt;&gt;<br>
&gt;&gt; Have you tried SUSE Studio? Need to create a Live CD,  an app you want to<br>
&gt;&gt; package and distribute , or create your own linux distro. Give SUSE Studio a<br>
&gt;&gt; try. <a href="http://www.susestudio.com" target="_blank">www.susestudio.com</a>.<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Ale mailing list<br>
&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; .!# RichardBronosky #!.<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Ale mailing list<br>
&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
<a href="tel:%28678%29%20636-9678" value="+16786369678">(678) 636-9678</a><br>
-----------------------------------------<br>
Discover it! Enjoy it! Share it! openSUSE Linux.<br>
-----------------------------------------<br>
openSUSE -- <a href="http://en.opensuse.org/User:Terrorpup" target="_blank">en.opensuse.org/User:Terrorpup</a><br>
openSUSE Ambassador/openSUSE Member<br>
skype,twiiter,identica,friendfeed -- terrorpup<br>
freenode(irc) --terrorpup/lupinstein<br>
Register Linux Userid: 155363<br>
<br>
Have you tried SUSE Studio? Need to create a Live CD,  an app you want<br>
to package and distribute , or create your own linux distro. Give SUSE<br>
Studio a try. <a href="http://www.susestudio.com" target="_blank">www.susestudio.com</a>.<br>
<br>
_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>.!# RichardBronosky #!.<br>