plztell.me

_

Introduction

You're SSH'd into a headless server. Something breaks. You need an answer — now. Just ask. Works anywhere you have curl or wget. No browser. No installation. No context switching.

Your queries and AI responses are never logged or stored.

Load It

Load the plz shell function into your terminal. It handles URL encoding, accepts piped input, and maintains conversation context — run it once per session, nothing is installed permanently.

Linux / macOS
curl Click to copy Copied
eval "$(curl -sL plztell.me/setup)"
wget Click to copy Copied
eval "$(wget -qO- plztell.me/setup)"

Optional: To make it permanent, add the command above to your ~/.bashrc or ~/.zshrc.

Windows
PowerShell Click to copy Copied
iex (iwr -useb plztell.me/setup/win).Content

Optional: To make it permanent, add the command to your PowerShell profile ($PROFILE).

Curious what the shell function does? It's short and transparent — inspect the source at plztell.me/setup (or plztell.me/setup/win for PowerShell).

Use It

What's the magic word? plz!

Prefix your question with plz — type naturally, the function handles the rest.

Terminal Click to copy Copied
plz how do i find files larger than 1GB
Pipe in context

Send logs, configs, error messages, or command output for analysis.

Terminal Click to copy Copied
cat /etc/nginx/nginx.conf | plz why is this returning 502
Follow up

Continue the conversation. Context is preserved within your session.

Terminal Click to copy Copied
plz explain that in more detail
Reset

Start fresh. Clear the conversation history and begin a new session.

Terminal Click to copy Copied
plz reset

Without the Shell Function

Prefer not to run the shell function, or working on a restricted system? You can query plztell.me directly — just replace spaces with + in the URL:

curl Click to copy Copied
curl -L plztell.me/q/how+do+i+extract+a+tar.gz+file
wget Click to copy Copied
wget -qO- plztell.me/q/how+do+i+extract+a+tar.gz+file

Works anywhere, but without natural typing, piped input, or conversation history.