Installation
Quick Install
Section titled “Quick Install”Install Renamify on Linux or macOS:
curl -fsSL https://docspring.github.io/renamify/install.sh | bash
Alternative Install Options
Section titled “Alternative Install Options”# System-wide installcurl -fsSL https://docspring.github.io/renamify/install.sh | bash -s -- --system
# Custom directorycurl -fsSL https://docspring.github.io/renamify/install.sh | bash -s -- --prefix "$HOME/bin"
# Uninstallcurl -fsSL https://docspring.github.io/renamify/install.sh | bash -s -- --uninstall
The install script defaults to ~/.local/bin
(no sudo required) and detects your OS and architecture automatically.
Download Binary
Section titled “Download Binary”x86_64 / amd64
Section titled “x86_64 / amd64”curl -L https://github.com/DocSpring/renamify/releases/latest/download/renamify-linux-amd64.tar.gz | tar xzsudo mv renamify /usr/local/bin/renamifysudo chmod 755 /usr/local/bin/renamifyrenamify --version
curl -L https://github.com/DocSpring/renamify/releases/latest/download/renamify-linux-arm64.tar.gz | tar xzsudo mv renamify /usr/local/bin/renamifysudo chmod 755 /usr/local/bin/renamifyrenamify --version
Intel (x86_64)
Section titled “Intel (x86_64)”curl -L https://github.com/DocSpring/renamify/releases/latest/download/renamify-macos-amd64.tar.gz | tar xzsudo mv renamify /usr/local/bin/renamifysudo chmod 755 /usr/local/bin/renamifyrenamify --version
Apple Silicon (arm64)
Section titled “Apple Silicon (arm64)”curl -L https://github.com/DocSpring/renamify/releases/latest/download/renamify-macos-arm64.tar.gz | tar xzsudo mv renamify /usr/local/bin/renamifysudo chmod 755 /usr/local/bin/renamifyrenamify --version
x86_64 / amd64
Section titled “x86_64 / amd64”# Download the latest releaseInvoke-WebRequest -Uri "https://github.com/DocSpring/renamify/releases/latest/download/renamify-windows-amd64.zip" -OutFile "renamify.zip"
# Extract to Program FilesExpand-Archive -Path "renamify.zip" -DestinationPath "$env:ProgramFiles\renamify"
# Add to PATH (requires admin privileges)[Environment]::SetEnvironmentVariable("Path", "$env:Path;$env:ProgramFiles\renamify", [EnvironmentVariableTarget]::Machine)
# Verify installation (open new terminal)renamify --version
# Download the latest releaseInvoke-WebRequest -Uri "https://github.com/DocSpring/renamify/releases/latest/download/renamify-windows-arm64.zip" -OutFile "renamify.zip"
# Extract to Program FilesExpand-Archive -Path "renamify.zip" -DestinationPath "$env:ProgramFiles\renamify"
# Add to PATH (requires admin privileges)[Environment]::SetEnvironmentVariable("Path", "$env:Path;$env:ProgramFiles\renamify", [EnvironmentVariableTarget]::Machine)
# Verify installation (open new terminal)renamify --version
Build from Source (Alternative)
Section titled “Build from Source (Alternative)”# Install Rust for Windows from https://win.rustup.rs/# Clone and build from sourcegit clone https://github.com/DocSpring/renamify.gitcd renamifycargo build --release# Copy target/release/renamify.exe to your PATH
Package Managers
Section titled “Package Managers”Coming soon: Install via Cargo, Homebrew, Chocolatey, or Linux package managers.
Build from Source
Section titled “Build from Source”For developers who want to build from source:
Prerequisites: Rust 1.89.0 or later
git clone https://github.com/DocSpring/renamifycd renamifycargo build --releasecp ./target/release/renamify /usr/local/bin/