<p dir="ltr">Thanks! I&#39;ve used do book with publican (same process that RedHat uses to publish manuals) and really didn&#39;t have another process example. I&#39;ll add it to the next iteration (being re-done in docbook).</p>

<div class="gmail_quote">On Aug 15, 2013 9:15 AM, &quot;George Allen&quot; &lt;<a href="mailto:glallen01@gmail.com">glallen01@gmail.com</a>&gt; wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Possibly a good example for the docbook would be the Mercurial<br>
documentation: <a href="https://bitbucket.org/bos/hgbook/src" target="_blank">https://bitbucket.org/bos/hgbook/src</a><br>
Their Makefile executes the examples so they get pulled into the book directly.<br>
<br>
On Wed, Aug 14, 2013 at 11:58 AM, Jim Kinney &lt;<a href="mailto:jim.kinney@gmail.com">jim.kinney@gmail.com</a>&gt; wrote:<br>
&gt; Correct. The * on the end is wrong. And there needs to be a -r statement<br>
&gt; explanation.<br>
&gt;<br>
&gt; Actually, that whole page needs many more examples.<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Aug 14, 2013 at 11:42 AM, Scott Plante &lt;<a href="mailto:splante@insightsys.com">splante@insightsys.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; I don&#39;t believe this is correct:<br>
&gt;&gt; <a href="http://jimkinney.us/3.%2Bssh%252C%2Bscp%2Band%2Brsync.html" target="_blank">http://jimkinney.us/3.%2Bssh%252C%2Bscp%2Band%2Brsync.html</a><br>
&gt;&gt;<br>
&gt;&gt; scp /path/to/files/ &lt;username&gt;@&lt;hostname&gt;:/path/to/new/files/* will copy<br>
&gt;&gt; all of the files to the /path/to/new/files/ location on the &lt;hostname&gt;<br>
&gt;&gt; system.<br>
&gt;&gt;<br>
&gt;&gt; That produces &quot;/path/to/files: not a regular file&quot; error for me. Perhaps<br>
&gt;&gt; you meant:<br>
&gt;&gt; scp /path/to/files/* &lt;username&gt;@&lt;hostname&gt;:/path/to/new/files/ will copy<br>
&gt;&gt; all of the files to the /path/to/new/files/ location on the &lt;hostname&gt;<br>
&gt;&gt; system.<br>
&gt;&gt;<br>
&gt;&gt; Or alternatively:<br>
&gt;&gt; scp -r /path/to/files &lt;username&gt;@&lt;hostname&gt;:/path/to/new/files<br>
&gt;&gt;<br>
&gt;&gt; Of course, the -r will copy subdirectories as well (as I&#39;m sure you know).<br>
&gt;&gt; I assume this was a typo, but perhaps some version of scp has special<br>
&gt;&gt; processing of a trailing asterisk?<br>
&gt;&gt;<br>
&gt;&gt; ~~~<br>
&gt;&gt;<br>
&gt;&gt; On a broader note, especially for Windows users, I think it&#39;s important to<br>
&gt;&gt; discuss parameter expansion somewhere. I say particularly for Windows users<br>
&gt;&gt; because I believe (and my batch file skills are minimal) that in Windows,<br>
&gt;&gt; the individual commands are responsible for expanding converting wildcards<br>
&gt;&gt; into individual files, whereas that happens before the individual command<br>
&gt;&gt; sees the arguments in *nix. So in Windows, when you type:<br>
&gt;&gt;<br>
&gt;&gt; copy *.txt C:\temp<br>
&gt;&gt;<br>
&gt;&gt; The copy command sees those two arguments and is responsible for figuring<br>
&gt;&gt; out that the current directory has a.txt b.txt and c.txt. It can be a subtle<br>
&gt;&gt; difference for new shell users at first, but an important one, that here the<br>
&gt;&gt; shell expands those arguments before the command sees them. So a similar<br>
&gt;&gt; line in Linux:<br>
&gt;&gt;<br>
&gt;&gt; cp *.txt /tmp<br>
&gt;&gt;<br>
&gt;&gt; Would appear to the cp command as:<br>
&gt;&gt;<br>
&gt;&gt; cp a.txt b.txt c.txt /tmp<br>
&gt;&gt;<br>
&gt;&gt; It has no idea whether you typed out the individual files or typed<br>
&gt;&gt; &quot;*.txt&quot;. (The cp command *likes* to be anthropomorphized!)<br>
&gt;&gt;<br>
&gt;&gt; Maybe you feel that&#39;s too advanced a concept for this guide, and as I&#39;ve<br>
&gt;&gt; just demonstrated, it&#39;s difficult to explain it very clearly ;-) but I&#39;ve<br>
&gt;&gt; noticed new users get very confused about why commands sometimes act the way<br>
&gt;&gt; they do in Linux because of this difference. I wish I could remember a<br>
&gt;&gt; particular example right now--perhaps others on the list will add some.<br>
&gt;&gt;<br>
&gt;&gt; Scott<br>
&gt;&gt;<br>
&gt;&gt; ________________________________<br>
&gt;&gt; From: &quot;Jim Kinney&quot; &lt;<a href="mailto:jim.kinney@gmail.com">jim.kinney@gmail.com</a>&gt;<br>
&gt;&gt; To: &quot;Atlanta Linux Enthusiasts - Yes! We run Linux!&quot; &lt;<a href="mailto:ale@ale.org">ale@ale.org</a>&gt;<br>
&gt;&gt; Sent: Tuesday, August 13, 2013 7:41:33 AM<br>
&gt;&gt;<br>
&gt;&gt; Subject: [ale] windows to Linux user conversion training guide<br>
&gt;&gt;<br>
&gt;&gt; When I was working at another location, one of the tasks I got to do was<br>
&gt;&gt; to write a training guide to take a windows user and make them a command<br>
&gt;&gt; line junkie in Linux. It was a fun project and the students that used it<br>
&gt;&gt; were enthusiastic about the guide.<br>
&gt;&gt;<br>
&gt;&gt; It&#39;s been far too long, but I finally extracted the bulk of that guide and<br>
&gt;&gt; put it up on my site for others to see. Feedback is welcome!<br>
&gt;&gt;<br>
&gt;&gt; It&#39;s not complete and due to the removal of much very specific stuff from<br>
&gt;&gt; where it was written it&#39;s a bit clunky now. also the migration away from a<br>
&gt;&gt; good but proprietary wiki (Atlassian Confluence) to plain html is less than<br>
&gt;&gt; stellar. I plan to do more from a docbook version for later html publication<br>
&gt;&gt; as soon as I can.<br>
&gt;&gt;<br>
&gt;&gt; the guide is at <a href="http://jimkinney.us" target="_blank">http://jimkinney.us</a> for now.<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; --<br>
&gt;&gt; James P. Kinney III<br>
&gt;&gt;<br>
&gt;&gt; Every time you stop a school, you will have to build a jail. What you gain<br>
&gt;&gt; at one end you lose at the other. It&#39;s like feeding a dog on his own tail.<br>
&gt;&gt; It won&#39;t fatten the dog.<br>
&gt;&gt; - Speech 11/23/1900 Mark Twain<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://heretothereideas.blogspot.com/" target="_blank">http://heretothereideas.blogspot.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;&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; --<br>
&gt; James P. Kinney III<br>
&gt;<br>
&gt; Every time you stop a school, you will have to build a jail. What you gain<br>
&gt; at one end you lose at the other. It&#39;s like feeding a dog on his own tail.<br>
&gt; It won&#39;t fatten the dog.<br>
&gt; - Speech 11/23/1900 Mark Twain<br>
&gt;<br>
&gt; <a href="http://heretothereideas.blogspot.com/" target="_blank">http://heretothereideas.blogspot.com/</a><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>
_______________________________________________<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>
</blockquote></div>