nowfound

Dev tools · August 10, 2023

EP

Englishell – Plain english shell command executor, powered by ChatGPT

There are easy and there are hard unix shell commands to remember, nobody knows them all. Why not use ChatGPT to translate plain english instructions into executable shell commands. Here are a few examples how `englishell` CLI can be used: $ englishell kill the process that listens to port 8080 -> lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9 $ englishell print current git branch -> git branch --show-current $ englishell show the sizes of all folders in parent of the current directory -> du -sh ../* $ englishell how long the system has been running -> uptime $ englishell…

What it does

In the maker’s words, at launch

There are easy and there are hard unix shell commands to remember, nobody knows them all. Why not use ChatGPT to translate plain english instructions into executable shell commands. Here are a few examples how `englishell` CLI can be used: $ englishell kill the process that listens to port 8080 -> lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9 $ englishell print current git branch -> git branch --show-current $ englishell show the sizes of all folders in parent of the current directory -> du -sh ../* $ englishell how long the system has been running -> uptime $ englishell generate strong password -> openssl rand -base64 14

Does the same job

all alternatives →
  • nlshJan 2026 · ▲220

    talk to your terminal in natural language

  • SB
    ShellTalk brings deterministic text-to-bashApr 2026 · barrasso.me · ▲9

    Hi HN! I built a CLI tool called ShellTalk for macOS, Linux, and web (WebAssembly) that maps English text to the corresponding Bash commands. ShellTalk is written in Swift and available under the Apache 2.0 license on GitHub. I was inspired a few weeks ago after reading the Meta-Harness paper and seeing a tool called Hunch that did something similar using the Apple Foundation model. I often forget flag names and orders, but I wanted something that worked consistently. The 3B AFM worked surprisingly well with Hunch, but it felt slow and sometimes slight changes in what I wrote would result in…

  • Warpy: Terminal Generative Shell2024 · ▲109

    AI terminal better than ChatGPT

  • BashBuddy2025 · ▲159

    Write bash commands with natural language, fully local.

  • UN
    Use Natural Language to Run Terminal Commands (Ghost in the Shell)2025 · github.com · ▲6

    Hi HN, I just released a very simple AI Shell / CLI tool that lets you convert natural language directly into executable shell commands. Built with python to simplify terminal workflows and help you quickly run commands without memorizing syntax. It has two main usage modes: One-shot mode: Quickly execute commands using natural language. Example: ai "find all PNG files larger than 5MB" The AI responds with the appropriate command and asks if you want to execute it. Interactive chat mode: Start a terminal chat session with the AI (ai -i) to iteratively build commands or scripts. Some…

  • OpenAI Codex CLI2025 · ▲192

    Frontier reasoning in the terminal

More dev tools this month

the category →
  • Dograh592

    The open source VAPI alternative

    Dev tools · 25d ago · dograh.com

  • Meridian530

    Don't let your work go unnoticed. Get promoted!

    Dev tools · 20d ago · meridiona.com

  • x1516

    Lovable for iPhone apps go from idea to App Store

    Dev tools · 11d ago · x1.new

  • Open-source GTM skills for technical founders

    Dev tools · 29d ago · gtmcofounder.com

  • OpenTrailPaper is open-source bike computer firmware for the LilyGO T5S3 4.7" E-Paper PRO. It supports offline maps, GPX routes, FIT recording and Bluetooth sensors.

    Dev tools · 1d ago · opentrailpaper.com

  • Nuphos380

    The AI-Native DevOps Workspace.

    Dev tools · 24d ago · nuphos.ai

Launched alongside, August 2023

the whole month →
  • Resend1,326

    Email for developers

    Dev tools · 2023 · resend.com

  • STORI AI1,320

    Your ideas become visually compelling branded social posts

    AI · 2023 · storiai.com

  • Kombai1,080

    A new AI model that you can prompt with UI designs

    AI · 2023 · kombai.com

  • Understand your audience without 50 interviews

    AI · 2023 · founderpal.ai

  • Lottielab871

    Create and ship lottie animations to sites and apps faster

    Dev tools · 2023 · lottielab.com

  • LC

    Outlines is a Python library that focuses on text generation with large language models. Brandon and I are not LLM experts and started the project a few months ago because we wanted to understand better how the generation process works. Our original background is probabilistic, relational and symbolic programming. Recently we came up with a fast way to generate text that matches a regex (https://blog.normalcomputing.ai/posts/2023-07-27-regex-guide...). The basic idea is simple: regular expressions have an equivalent Deterministic-Finite Automaton (DFA) representation. We…

    AI · 2023 · github.com