* . *
  • About
  • Advertise
  • Privacy & Policy
  • Contact
Saturday, March 14, 2026
Earth-News
  • Home
  • Business
  • Entertainment

    Labrinth Calls Out the Entertainment Industry and ‘Euphoria’ in Mysterious Post

    The Try Guys Embark on an Unforgettable Journey Through the Soul of New Orleans: Jazz, Burlesque, Voodoo, and Beyond!

    Get Inspired This Weekend with Fresh Ideas for Going Green

    Seattle’s Wing Luke Museum Announces Exciting New Executive Director

    Golden Nugget Owner Eyes Major Acquisition of Caesars Entertainment

    Inspired Entertainment Unveils Exciting Q4 2025 Earnings Results

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    DexCom’s Next Chapter: Unlocking Exciting Growth in Glucose Monitoring Technology

    Is Keysight Technologies (KEYS) Powering the Future of the Technology Sector?

    Eight Midwestern Universities Unite to Launch Innovative Technology Hub in San Francisco

    Top Industry Experts Reveal Crucial Insights on Globant SA and Uber Technologies

    JIATF 401 Publishes Guide to Counter-Drone Technology and Privacy Protections – U.S. Department of War (.gov)

    Could This Technology Pose the Greatest Threat to American Democracy?

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
  • Home
  • Business
  • Entertainment

    Labrinth Calls Out the Entertainment Industry and ‘Euphoria’ in Mysterious Post

    The Try Guys Embark on an Unforgettable Journey Through the Soul of New Orleans: Jazz, Burlesque, Voodoo, and Beyond!

    Get Inspired This Weekend with Fresh Ideas for Going Green

    Seattle’s Wing Luke Museum Announces Exciting New Executive Director

    Golden Nugget Owner Eyes Major Acquisition of Caesars Entertainment

    Inspired Entertainment Unveils Exciting Q4 2025 Earnings Results

  • General
  • Health
  • News

    Cracking the Code: Why China’s Economic Challenges Aren’t Shaking Markets, Unlike America’s” – Bloomberg

    Trump’s Narrow Window to Spread the Truth About Harris

    Trump’s Narrow Window to Spread the Truth About Harris

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    Israel-Gaza war live updates: Hamas leader Ismail Haniyeh assassinated in Iran, group says

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    PAP Boss to Niger Delta Youths, Stay Away from the Protest

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Court Restricts Protests In Lagos To Freedom, Peace Park

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Fans React to Jazz Jennings’ Inspiring Weight Loss Journey

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Science
  • Sports
  • Technology

    DexCom’s Next Chapter: Unlocking Exciting Growth in Glucose Monitoring Technology

    Is Keysight Technologies (KEYS) Powering the Future of the Technology Sector?

    Eight Midwestern Universities Unite to Launch Innovative Technology Hub in San Francisco

    Top Industry Experts Reveal Crucial Insights on Globant SA and Uber Technologies

    JIATF 401 Publishes Guide to Counter-Drone Technology and Privacy Protections – U.S. Department of War (.gov)

    Could This Technology Pose the Greatest Threat to American Democracy?

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
No Result
View All Result
Earth-News
No Result
View All Result
Home Technology

Show HN: Llm2sh – Translate plain-language requests into shell commands

July 18, 2024
in Technology
Show HN: Llm2sh – Translate plain-language requests into shell commands
Share on FacebookShare on Twitter

llm2sh is a command-line utility that leverages Large Language Models (LLMs) to translate plain-language requests
into shell commands. It provides a convenient way to interact with your system using natural language.

Translates plain language requests into corresponding shell commands
Supports multiple LLMs for command generation
Customizable configuration file
YOLO mode for running commands without confirmation
Easily extensible with new LLMs and system prompts
Verbose mode for debugging

llm2sh uses OpenAI, Claude, and other LLM APIs to generate shell commands based on the user’s requests.
For OpenAI, Claude, and Groq, you will need to have an API key to use this tool.

OpenAI: You can sign up for an API key on the OpenAI website.
Claude: You can sign up for an API key on the Claude API Console.
Groq: You can sign up for an API key on the GroqCloud Console.

Running llm2sh for the first time will create a template configuration file at ~/.config/llm2sh/llm2sh.json.
You can specify a different path using the -c or –config option.

Before using llm2sh, you need to set up the configuration file with your API keys and preferences.
You can also use the OPENAI_API_KEY, CLAUDE_API_KEY, and GROQ_API_KEY environment variables to specify the
API keys.

To use llm2sh, run the following command followed by your request:

llm2sh [options]

For example:

Basic usage:

$ llm2sh “list all files in the current directory”

You are about to run the following commands:
$ ls -a
Run the above commands? [y/N]

Use a specific model for command generation:

$ llm2sh -m gpt-3.5-turbo “find all Python files in the current directory, recursively”

You are about to run the following commands:
$ find . -type f -name “*.py”
Run the above commands? [y/N]

llm2sh supports running multiple commands in sequence, and supports interactive commands like sudo:

llm2sh “install docker in rootless mode”

You are about to run the following commands:
$ sudo newgrp docker
$ sudo pacman -Sy docker-rootless-extras
$ sudo usermod -aG docker “$USERNAME”
$ dockerd-rootless-setuptool.sh install
Run the above commands? [y/N]

Run the generated command without confirmation:

llm2sh –force “delete all temporary files”

-h, –help show this help message and exit
-c CONFIG, –config CONFIG
specify config file, (Default: ~/.config/llm2sh/llm2sh.json)
-d, –dry-run do not run the generated command
-l, –list-models list available models
-m MODEL, –model MODEL
specify which model to use
-t TEMPERATURE, –temperature TEMPERATURE
use a custom sampling temperature
-v, –verbose print verbose debug information
-f, –yolo, –force run whatever GPT wants, without confirmation

llm2sh currently supports the following LLMs for command generation:

(Ratings are based on my subjective opinion and experience. Your mileage may vary.)

Model Name
Provider
Accuracy
Cost
Notes

local
N/A
¯(ツ)/¯
FREE
Needs local OpenAI API compatible LLM Api Endpoint (i.e. llama.cpp)

groq-llama3-70b
Groq
🧠🧠🧠
FREE (with rate limits)
Blazing fast; recommended

groq-llama3-8b
Groq
🧠🧠
FREE (with rate limits)
Blazing fast

groq-mixtral-8x7b
Groq
🧠
FREE (with rate limits)
Blazing fast

groq-gemma-7b
Groq
🧠
FREE (with rate limits)
Blazing fast

gpt-4o
OpenAI
🧠🧠
💲💲💲
Default model

gpt-4-turbo
OpenAI
🧠🧠🧠
💲💲💲💲

gpt-3.5-turbo-instruct
OpenAI
🧠🧠
💲💲

claude-3-opus
Claude
🧠🧠🧠🧠
💲💲💲💲
Fairly slow (>10s)

claude-3-sonnet
Claude
🧠🧠🧠
💲💲💲
Somewhat slow (~5s)

claude-3-haiku
Claude
🧠
💲💲

✅ Support multiple LLMs for command generation
⬜ User-customizable system prompts
⬜ Integrate with tool calling for more complex commands
⬜ More complex RAG for efficiently providing relevant context to the LLM
⬜ Better support for executing complex interactive commands
⬜ Interactive configuration & setup via the command line

llm2sh does not store any user data or command history, and it does not record or send any telemetry
by itself. However, the LLM APIs may collect and store the requests and responses for their own purposes.

To help LLMs generate better commands, llm2sh may send the following information as part of the LLM
prompt in addition to the user’s request:

Your operating system and version
The current working directory
Your username
Names of files and directories in your current working directory
Names of environment variables available in your shell. (Only the names/keys are sent, not the values).

Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.

This project is licensed under the GPLv3.

llm2sh is an experimental tool that relies on LLMs for generating shell commands. While it can be helpful, it’s important to review and understand the generated commands before executing them, especially when using the YOLO mode. The developers are not responsible for any damages or unintended consequences resulting from the use of this tool.

This project is not affiliated with OpenAI, Claude, or any other LLM provider or creator.
This project is not affiliated with my employer in any way. It is an independent project created for educational and research purposes.

>>> Read full article>>>
Copyright for syndicated content belongs to the linked Source : Hacker News – https://github.com/randombk/llm2sh

Tags: plain-languagetechnologytranslate
Previous Post

150+ Best Prime Day Deals: Final Hours to Score Deep Discounts on Tech, Home Goods and So Much More

Next Post

Mercedes-Benz high-power charging goes large at Starbucks

Exploring the Fascinating Diversity, Ecology, Cell Biology, and Evolution of Asgard Archaea

March 14, 2026

O-Zone: Evangel 79, Science and Arts 74 – KY3

March 14, 2026

How Course-Based Research Experiences Are Unlocking Exciting New Frontiers in Science

March 14, 2026

New Owner Cuts Majority of Staff at Three Salt Lake Magazines

March 14, 2026

Kiké Seizes the Moment to Shine for Puerto Rico on the World Stage

March 14, 2026

Iran Threatens to Cripple Global Economy as Trump Declares Regime’s Imminent Collapse

March 14, 2026

Labrinth Calls Out the Entertainment Industry and ‘Euphoria’ in Mysterious Post

March 14, 2026

Fourth Purdue AMR Conference Promotes Collaboration to Address Global Health Threat of Antimicrobial Resistance through PVM’s One Health Initiative. – Purdue University College of Veterinary Medicine

March 14, 2026

The Rundown | Last Week in Michigan Politics (3-13-26) – WZZM13.com

March 14, 2026

DexCom’s Next Chapter: Unlocking Exciting Growth in Glucose Monitoring Technology

March 14, 2026

Categories

Archives

March 2026
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  
« Feb    
Earth-News.info

The Earth News is an independent English-language daily published Website from all around the World News

Browse by Category

  • Business (20,132)
  • Ecology (1,117)
  • Economy (1,135)
  • Entertainment (22,012)
  • General (20,397)
  • Health (10,173)
  • Lifestyle (1,149)
  • News (22,149)
  • People (1,138)
  • Politics (1,153)
  • Science (16,351)
  • Sports (21,637)
  • Technology (16,118)
  • World (1,128)

Recent News

Exploring the Fascinating Diversity, Ecology, Cell Biology, and Evolution of Asgard Archaea

March 14, 2026

O-Zone: Evangel 79, Science and Arts 74 – KY3

March 14, 2026
  • About
  • Advertise
  • Privacy & Policy
  • Contact

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

No Result
View All Result

© 2023 earth-news.info

Go to mobile version