Nampaste

Fast paste service for CLI. Big Dong Energy

Quick Install

# Install CLI function
curl -sSL https://nampaste.mmo.show/install | bash
source ~/.bashrc
        

Usage

# Pipe any command
echo "hello world" | nampaste
git log --oneline | nampaste
docker ps | nampaste

# Upload files
nampaste script.py
nampaste ~/.bashrc

# Direct text
nampaste "quick paste"
        

API Endpoints

Manual curl

# Create paste with curl
curl -X POST https://nampaste.mmo.show/api/paste   -H "Content-Type: application/json"   -d '{"content":"Hello World!"}'

# With expiration
curl -X POST https://nampaste.mmo.show/api/paste   -H "Content-Type: application/json"   -d '{"content":"temporary","expires_in":"1h"}'

# Delete paste
curl -X DELETE https://nampaste.mmo.show/api/paste/abc123