🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Base64 Tool

by @dinghaibin

Encode and decode base64 data. Support for standard and URL-safe variants.

Versionv1.0.0
Downloads450
TERMINAL
clawhub install dinghaibin-base64-tool

πŸ“– About This Skill


name: base64-tool description: Encode and decode base64 data. Support for standard and URL-safe variants.

Base64 Tool - Encoding

Encode binary data to base64 and decode base64 back to original.

Quick Start

echo 'Hello' | base64-tool --encode

Features

  • Encode to base64
  • Decode from base64
  • URL-safe variant
  • File and stdin input
  • Examples

    echo 'Hello' | base64-tool --encode
    echo 'SGVsbG8=' | base64-tool --decode
    

    See Also

  • Related documentation: man base64 (if available)
  • πŸ’‘ Examples

    echo 'Hello' | base64-tool --encode
    echo 'SGVsbG8=' | base64-tool --decode