Installation

Install FFD using the official installer or download a release manually.

Linux / macOS

Install the latest version directly from GitHub.

curl -fsSL https://raw.githubusercontent.com/hamidrezaesh/ffd/main/scripts/install.sh | sh

Verify the installation:

ffd --help

Windows

Before running the installer, make sure PowerShell scripts are allowed:

Set-ExecutionPolicy -Scope CurrentUser RemoteSigned

Then run:

irm https://raw.githubusercontent.com/hamidrezaesh/ffd/main/scripts/install.ps1 | iex

After installation, restart your terminal and run:

ffd --help

Install from Release

Download a release archive for your operating system and install FFD manually.

Operating SystemArchitectureDownload
macOSx86_64 / amd64Download
macOSARM64Download
Linuxx86_64 / amd64Download
LinuxARM64Download
Windowsx86_64 / amd64Download
WindowsARM64Download

Linux / macOS

After downloading the archive:

# Extract the downloaded archive
tar -xzf ffd_*.tar.gz

# Install the binary
sudo install -m 755 ffd /usr/local/bin/

# Verify it
ffd --help

Windows

Download the appropriate .zip archive from the Releases page. Extract ffd.exe and add its directory to your PATH.

Then run:

ffd --help