<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>command-line — LowEndSpirit</title>
        <link>https://lowendspirit.com/index.php?p=/</link>
        <pubDate>Thu, 04 Jun 2026 04:44:57 +0000</pubDate>
        <language>en</language>
            <description>command-line — LowEndSpirit</description>
    <atom:link href="https://lowendspirit.com/index.php?p=/discussions/tagged/command-line/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>AI Command Line Interface With Standard Input, Standard Output, Standard Error, And Pipes?</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/8125/ai-command-line-interface-with-standard-input-standard-output-standard-error-and-pipes</link>
        <pubDate>Fri, 02 Aug 2024 02:06:57 +0000</pubDate>
        <category>Help</category>
        <dc:creator>Not_Oles</dc:creator>
        <guid isPermaLink="false">8125@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I've been looking for an open source AI model command line interface that works with standard input, standard output, standard error, and pipes. It's okay if the model is running externally (for example Google Gemini), but a locally running model would be interesting too. Any hints for me? Thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>Linux command line fun at ctrl-c.club!</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/7780/linux-command-line-fun-at-ctrl-c-club</link>
        <pubDate>Wed, 08 May 2024 21:25:26 +0000</pubDate>
        <category>General</category>
        <dc:creator>Not_Oles</dc:creator>
        <guid isPermaLink="false">7780@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><img src="https://lowendspirit.com/uploads/editor/gb/5r82yn7jnrxb.png" alt="" title="" /></p>

<p>Just thought to mention the great guys and the tons of Linux command line terminal fun over at <a rel="nofollow" href="https://ctrl-c.club">ctrl-c.club</a> and at the rest of the <a rel="nofollow" href="https://tildeverse.org">tildeverse.</a></p>

<p>During the time in between scrolling paper output from terminals and multi-color terminals, the main choices for terminal text were green or amber, both displayed against black backgrounds. Maybe the best known terminal from the green/amber period might be the <a rel="nofollow" href="https://en.wikipedia.org/wiki/VT420">VT420.</a></p>

<p>True to the command line terminal tradition, ctrl-c.club and tildeverse.org are green characters on black backgrounds, and <a rel="nofollow" href="https://tilde.club">tilde.club</a> is amber on black.</p>

<p>I knew a guy who could touch type as fast as lightning! He could execute command line terminal commands to find any and every bit of information in less time than the blink of an eye! He was amazing!</p>

<p>ctrl-c.club is a great place to go if, like me, you want to learn more about the command line terminal!</p>
]]>
        </description>
    </item>
    <item>
        <title>HTTP Server Setup with a Single Command Line</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/3931/http-server-setup-with-a-single-command-line</link>
        <pubDate>Mon, 21 Mar 2022 20:31:31 +0000</pubDate>
        <category>LES Talk</category>
        <dc:creator>alexxgg</dc:creator>
        <guid isPermaLink="false">3931@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><em>Written by <a href="https://lowendspirit.com/index.php?p=/profile/alexxgg" rel="nofollow">@alexxgg</a>, 19 May 2021</em><br />
<small>Article was migrated from WordPress to Vanilla in March 2022</small></p>

<p>
  <img src="https://talk.lowendspirit.com/uploads/editor/y9/8lyyu4b1q32d.png" alt="image" />
</p>

<p>This is a guest post by <a rel="nofollow" href="https://talk.lowendspirit.com">forum</a> user <a href="https://lowendspirit.com/index.php?p=/profile/alexxgg" rel="nofollow">@alexxgg</a>,</p>

<p>Hi there!</p>

<p>These days when the internet shares things in milliseconds, who of you have needed to share a file quickly? I bet some of you remember at least one time one of those cases.</p>

<p>As you probably know, in terms of web servers, we can share files with popular software like Apache, Nginx, and Lighttpd but this software need basic configuration, also they consume server resources as long as they’re active.</p>

<p>What if you could set up a basic HTTP web server without installing Apache, Nginx, or Lighttpd? Well, that’s sounds kind of impossible, and even more unbelievable is that you can kill it with Ctrl^C. Thanks to Python3 we can do that with its <a rel="nofollow" href="https://pypi.org/project/httpserver/">HTTP server module</a>.</p>

<p>This module will deploy an HTTP server in any directory of the server, even in the root directory and that sounds ridiculously dangerous, fortunately, the default port of this HTTP server isn’t 80. Instead, it will use port: 8000 but you can assign a custom port, very convenient for NAT environment instances.</p>

<p>Now you can deploy a basic HTTP server -in the current directory with the default port- by typing this single command line:</p>

<pre><code>python3 -m http.server
</code></pre>

<p>Starting HTTP Server</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/05/lopja74fwxsh.png" alt="" title="" /></p>

<p>Killing HTTP Server</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/j0/nzh2vdl7fq70.png" alt="" title="" /></p>

<p>HTTP Server as Shown in Browser</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/ic/4ppesu0bamvj.png" alt="" title="" /></p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/81/dmmmh9vc0eds.png" alt="" title="" /></p>

<p>You can change the default port (example port: 32085) and specify a directory (example directory: /tmp/) with:</p>

<pre><code>python3 -m http.sever 32085 --directory /tmp/
</code></pre>

<p>More information about Python3 httpserver module is available <a rel="nofollow" href="https://docs.python.org/3/library/http.server.html">here</a></p>

<p>Also, there is a github page <a rel="nofollow" href="https://github.com/freelamb/simple_http_server">here</a></p>

<p><strong>Note</strong>: of course, you will need to install Python3 in order to use these post example command lines.<br />
Leave a comment to let me know any questions or suggestions.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
