Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Although it's lame, here is what I have reverted to as a quick and dirty solution:</p> <p>I set a variable called number to the line I want to compare:</p> <pre><code>set number=10 </code></pre> <p>I wrote the following batch file and installed GNU Utilities:</p> <pre><code>head -n %number% approval.htm | tail -n 1 &gt;&gt; compare%number%.file echo approval.htm &gt;&gt; compare%number%.file head -n %number% checkout.htm | tail -n 1 &gt;&gt; compare%number%.file echo checkout.htm &gt;&gt; compare%number%.file head -n %number% confirmation.htm | tail -n 1 &gt;&gt; compare%number%.file echo confirmation.htm &gt;&gt; compare%number%.file head -n %number% edit_imprint.htm | tail -n 1 &gt;&gt; compare%number%.file echo edit_imprint.htm &gt;&gt; compare%number%.file head -n %number% history.htm | tail -n 1 &gt;&gt; compare%number%.file echo history.htm &gt;&gt; compare%number%.file head -n %number% home.htm | tail -n 1 &gt;&gt; compare%number%.file echo home.htm &gt;&gt; compare%number%.file head -n %number% imprint.htm | tail -n 1 &gt;&gt; compare%number%.file echo imprint.htm &gt;&gt; compare%number%.file head -n %number% mixed.htm | tail -n 1 &gt;&gt; compare%number%.file echo mixed.htm &gt;&gt; compare%number%.file head -n %number% office.htm | tail -n 1 &gt;&gt; compare%number%.file echo office.htm &gt;&gt; compare%number%.file head -n %number% payment.htm | tail -n 1 &gt;&gt; compare%number%.file echo payment.htm &gt;&gt; compare%number%.file head -n %number% report_cat.htm | tail -n 1 &gt;&gt; compare%number%.file echo report_cat.htm &gt;&gt; compare%number%.file head -n %number% review.htm | tail -n 1 &gt;&gt; compare%number%.file echo review.htm &gt;&gt; compare%number%.file head -n %number% settings.htm | tail -n 1 &gt;&gt; compare%number%.file echo settings.htm &gt;&gt; compare%number%.file head -n %number% shopping_cart.htm | tail -n 1 &gt;&gt; compare%number%.file echo shopping_cart.htm &gt;&gt; compare%number%.file head -n %number% stock.htm | tail -n 1 &gt;&gt; compare%number%.file echo stock.htm &gt;&gt; compare%number%.file head -n %number% warehouse.htm | tail -n 1 &gt;&gt; compare%number%.file echo warehouse.htm &gt;&gt; compare%number%.file </code></pre> <p>And the resulting file compare10.file has all of the comparisons in it to be viewed vertically. It's lame but it works.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload