FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I got tired of escaping quotes in SSH commands, so I made a small CLI tool that sidesteps the problem entirely.
NewsTools

I got tired of escaping quotes in SSH commands, so I made a small CLI tool that sidesteps the problem entirely.

via Dev.toEntrouter5h ago

I built a CLI tool and Rust crate that solves a problem I kept running into shell escaping breaking commands when piping them through SSH, Docker exec, kubectl exec, or cron. The idea is simple. Instead of fighting with nested quotes and backslashes, you pipe your command through entrouter, which base64-encodes it locally, sends it to the target, decodes it there, and executes it. The command never touches an intermediate shell, so quotes, JSON, special characters all arrive intact. echo 'curl -s -X POST -H "Content-Type: application/json" -d {"key":"value"} http://localhost:3000/api' | entrouter ssh root@your-vps No escaping. First try. Every time. What it does: entrouter ssh - run commands on remote machines without escaping entrouter docker - run commands inside containers without escaping entrouter kube - run commands inside Kubernetes pods without escaping entrouter cron [schedule] - encode commands into cron-safe lines (no % breakage) entrouter exec - decode and execute locally (

Continue reading on Dev.to

Opens in a new tab

Read Full Article
0 views

Related Articles

Robinhood is making a social network
News

Robinhood is making a social network

The Verge • 40m ago

News

Stop Guessing: A Simple System to Solve Any Coding Problem

Medium Programming • 1h ago

Best early Amazon Spring Sale robot vacuum deals 2026
News

Best early Amazon Spring Sale robot vacuum deals 2026

ZDNet • 1h ago

Kasa’s Matter-compatible smart plugs are on sale for $11 a pop
News

Kasa’s Matter-compatible smart plugs are on sale for $11 a pop

The Verge • 1h ago

Consistent Hashing for Sharding and Sticky Routing in Spring Boot
News

Consistent Hashing for Sharding and Sticky Routing in Spring Boot

Medium Programming • 1h ago

Discover More Articles