Download SecureNote CLI

Command-line tool for creating and viewing encrypted notes

Loading releases...

Installation

macOS (Homebrew)

Install using Homebrew on macOS:

brew install patrickdappollonio/tap/securenote

macOS

Download and install the latest version:

# macOS (Apple Silicon)
curl -L https://securenote.app/downloads/latest/darwin-aarch64 -o securenote

# macOS (Intel)
curl -L https://securenote.app/downloads/latest/darwin-x86_64 -o securenote

# Make executable and install
chmod +x securenote
sudo mv securenote /usr/local/bin/

Linux

Download and install the latest version:

# Linux (x86_64)
curl -L https://securenote.app/downloads/latest/linux-x86_64 -o securenote

# Linux (ARM64)
curl -L https://securenote.app/downloads/latest/linux-aarch64 -o securenote

# Make executable and install
chmod +x securenote
sudo mv securenote /usr/local/bin/

Windows

Download and install using PowerShell:

# Download the latest version
Invoke-WebRequest -Uri https://securenote.app/downloads/latest/windows-x86_64.exe -OutFile securenote.exe

# Move to a directory in your PATH
Move-Item securenote.exe C:\Windows\System32\

Usage

# Create a note
echo "My secret" | securenote create

# View a note
securenote view <note-id> --password <password>

# See all commands
securenote --help