<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: soupCodez</title>
    <description>The latest articles on DEV Community by soupCodez (@soupcodez).</description>
    <link>https://dev.to/soupcodez</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F658067%2Fe109bc0e-2e7f-4053-b4bc-5827c055cc20.jpeg</url>
      <title>DEV Community: soupCodez</title>
      <link>https://dev.to/soupcodez</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/soupcodez"/>
    <language>en</language>
    <item>
      <title>How to make the prompt in the Command Prompt look like the Linux bash prompt</title>
      <dc:creator>soupCodez</dc:creator>
      <pubDate>Wed, 30 Jun 2021 20:45:00 +0000</pubDate>
      <link>https://dev.to/soupcodez/how-to-make-the-prompt-in-the-command-prompt-look-like-the-linux-bash-prompt-50g3</link>
      <guid>https://dev.to/soupcodez/how-to-make-the-prompt-in-the-command-prompt-look-like-the-linux-bash-prompt-50g3</guid>
      <description>&lt;h1&gt;How to make the prompt in the Command Prompt look like the Linux bash prompt&lt;/h1&gt;

&lt;h2&gt;Example&lt;/h2&gt;

&lt;p&gt;Here is an example of how the Linux bash in Ubuntu looks like:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
    &lt;tbody&gt;
        &lt;tr&gt;
            &lt;td&gt;&lt;a href="https://i.imgur.com/1WpiRVt.png"&gt;&lt;img alt="wsl terminal" src="https://res.cloudinary.com/practicaldev/image/fetch/s--kXWtKDaU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/1WpiRVt.png" title="In WSL"&gt;&lt;/a&gt;&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;Ubuntu in WSL&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;br&gt;&lt;br&gt;

&lt;h2&gt;Tutorial&lt;/h2&gt;

&lt;p&gt;There is a feature in Command Prompt called the &lt;/p&gt;

&lt;p&gt;&lt;code&gt;prompt&lt;/code&gt;&lt;/p&gt;


&lt;p&gt;command. It lets you change your prompt for example I could type &lt;/p&gt;

&lt;p&gt;&lt;code&gt;prompt hello&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;it would change my prompt to hello:&lt;/p&gt;
&lt;br&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;br&gt;
    &lt;tbody&gt;
&lt;br&gt;
        &lt;tr&gt;
&lt;br&gt;
            &lt;td&gt;&lt;a href="https://i.imgur.com/phNoR2x.png"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dkrGnFwk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/phNoR2x.png"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;br&gt;
        &lt;/tr&gt;
&lt;br&gt;
        &lt;tr&gt;
&lt;br&gt;
            &lt;td&gt;&lt;/td&gt;
&lt;br&gt;
        &lt;/tr&gt;
&lt;br&gt;
    &lt;/tbody&gt;
&lt;br&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;br&gt;

&lt;p&gt;When I type &lt;/p&gt;

&lt;p&gt;&lt;code&gt;prompt&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;it goes back to normal!&lt;/p&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JbETUwxU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/dAAyhEq.png"&gt;
&lt;p&gt;When I type &lt;/p&gt;

&lt;p&gt;&lt;code&gt;prompt /?&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;it gives me the list of the variables.&lt;/p&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--f_Y3wncr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/nku0F98.png"&gt;

&lt;h2&gt;Here is the full solution: &lt;/h2&gt;

&lt;p&gt;If you use the prompt command it will reset when you relaunch the Command Prompt so the solution is to make a registry tweak. NOTE: I am not responsible if you mess up your windows install!!! The easy way to do this is by running &lt;a href="https://download937.mediafire.com/tt1gvliz92qg/t1nl50r4ajhrcl4/bash-command-prompt.reg"&gt;this file&lt;/a&gt; it has some text in it that when double-clicked will make the registry edits for you! If you are interested in how it works here is the file contents:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Windows Registry Editor Version 5.00 
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor]
"Autorun"="prompt $V $P $_$$$S"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It basically works by running &lt;/p&gt;

&lt;p&gt;&lt;code&gt;prompt $V $P $_$$$S&lt;/code&gt;&lt;/p&gt;

&lt;p&gt; every time you start Command Prompt. When you finish downloading the file open it and you are done!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Hello World!</title>
      <dc:creator>soupCodez</dc:creator>
      <pubDate>Wed, 30 Jun 2021 20:05:41 +0000</pubDate>
      <link>https://dev.to/soupcodez/hello-world-27lb</link>
      <guid>https://dev.to/soupcodez/hello-world-27lb</guid>
      <description>&lt;p&gt;this is a test post!&lt;/p&gt;

</description>
      <category>test</category>
    </item>
  </channel>
</rss>
