<?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: Niklas Schlimm</title>
    <description>The latest articles on DEV Community by Niklas Schlimm (@schlimm).</description>
    <link>https://dev.to/schlimm</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%2F1350117%2F2f9a289a-536a-4556-a887-b12425f4aeaa.png</url>
      <title>DEV Community: Niklas Schlimm</title>
      <link>https://dev.to/schlimm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/schlimm"/>
    <language>en</language>
    <item>
      <title>Just a simple bash menu</title>
      <dc:creator>Niklas Schlimm</dc:creator>
      <pubDate>Mon, 18 Mar 2024 19:08:03 +0000</pubDate>
      <link>https://dev.to/schlimm/just-a-simple-bash-menu-23kh</link>
      <guid>https://dev.to/schlimm/just-a-simple-bash-menu-23kh</guid>
      <description>&lt;p&gt;Hi there 🙂 I now work with so many complex tools on the command line. That's why I developed a shell menu for each tool as a kind of mnemonic. It's super easy to use. I have put the basic script and a few applications for Git and Kubernetes online cause I thought it might be of interest to the community 🤓&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/nschlimm/EasyKey.shellmenu"&gt;https://github.com/nschlimm/EasyKey.shellmenu&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would be happy to hear your opinion, comments and criticism. If you like it, I would of course be very happy about a star on Github 🙂 Ok, so long - Niklas ✌🏻&lt;/p&gt;

</description>
      <category>bash</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Just a simple bash menu</title>
      <dc:creator>Niklas Schlimm</dc:creator>
      <pubDate>Mon, 18 Mar 2024 19:07:02 +0000</pubDate>
      <link>https://dev.to/schlimm/just-a-simple-bash-menu-3bfi</link>
      <guid>https://dev.to/schlimm/just-a-simple-bash-menu-3bfi</guid>
      <description>&lt;p&gt;Hi there 🙂 I now work with so many complex tools on the command line. That's why I developed my own shell menu for each tool as a kind of mnemonic. It's super easy to use. I have put the basic script and a few applications for Git and Kubernetes online cause I thought it might be of interest to the community 🤓&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/nschlimm/EasyKey.shellmenu"&gt;https://github.com/nschlimm/EasyKey.shellmenu&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would be happy to hear your opinion, comments and criticism. If you like it, I would of course be very happy about a star on Github 🙂 Ok, so long - Niklas ✌🏻&lt;/p&gt;

</description>
      <category>bash</category>
    </item>
    <item>
      <title>Automate your command line with EasyKey.shellmenu</title>
      <dc:creator>Niklas Schlimm</dc:creator>
      <pubDate>Wed, 13 Mar 2024 20:01:39 +0000</pubDate>
      <link>https://dev.to/schlimm/automate-your-command-line-with-easykeyshellmenu-48nk</link>
      <guid>https://dev.to/schlimm/automate-your-command-line-with-easykeyshellmenu-48nk</guid>
      <description>&lt;p&gt;As a developer, I work with many different tools on the command line. That's why I got into the habit of recording everything in a simple shell menu. That's how I came up with &lt;a href="https://github.com/nschlimm/EasyKey.shellmenu"&gt;EasyKey.shellmenu&lt;/a&gt;. This allows me to easily create shell menus for my tools. I use it for kubectl, Maven and Git. Here is an example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;source "/path/to/shellmenu.sh"&lt;br&gt;
menuInit "Maven demo menu"&lt;br&gt;
  submenuHead "Life cycle commands:"&lt;br&gt;
     menuItem c "Clean all" "mvn clean:clean"&lt;br&gt;
     menuItem x "Compile" "mvn clean compile" &lt;br&gt;
     menuItem t "Test" "mvn clean test" &lt;br&gt;
     menuItem i "Install" "mvn clean install"  &lt;br&gt;
  submenuHead "Also usefull:"&lt;br&gt;
    menuItem d "Analyze dependencies" "mvn dependency:analyze"&lt;br&gt;
    menuItem u "Clean compile force updates" "mvn clean compile -U -DskipTests" &lt;br&gt;
    menuItem e "Show effective settings" "mvn help:effective-settings"&lt;br&gt;
    menuItem r "Show local repo location" "mvn help:evaluate -Dexpression=settings.localRepository | grep -v '\[INFO\]'" &lt;br&gt;
    menuItem l "Show global settings file location" showGlobalSettingFile&lt;br&gt;
startMenu&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The snippet creates a simple Maven menu like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsejxg6uvzrdrr68bpxx6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsejxg6uvzrdrr68bpxx6.png" alt="Image description" width="624" height="722"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the repository on Github for &lt;a href="https://github.com/nschlimm/EasyKey.shellmenu"&gt;EasyKey.shellmenu&lt;/a&gt; there are two more complex examples of menus for Git and kubectl. Check it out an if you like it please leave me a star for sharing it.&lt;/p&gt;

</description>
      <category>bash</category>
      <category>kubectl</category>
      <category>git</category>
      <category>shell</category>
    </item>
  </channel>
</rss>
