Skip to content

Install superfile

First make sure you have the following tools installed on your machine:

  • Any Nerd-font , and set the font for your terminal application to use the installed Nerd-font

Copy and paste the following one-line command into your machine’s terminal.

With curl:

Terminal window
bash -c "$(curl -sLo- https://superfile.netlify.app/install.sh)"

Or with wget:

Terminal window
bash -c "$(wget -qO- https://superfile.netlify.app/install.sh)"

Use SPF_INSTALL_VERSION to specify a version :

Terminal window
SPF_INSTALL_VERSION=1.2.1 bash -c "$(curl -sLo- https://superfile.netlify.app/install.sh)"

With powershell:

Terminal window
powershell -ExecutionPolicy Bypass -Command "Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://superfile.netlify.app/install.ps1'))"

Use SPF_INSTALL_VERSION to specify a version :

Terminal window
powershell -ExecutionPolicy Bypass -Command "$env:SPF_INSTALL_VERSION=1.2.1; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://superfile.netlify.app/install.ps1'))"

With Scoop:

Terminal window
scoop install superfile

Packaging status

Sort by letter

Terminal window
yay -S superfile
Terminal window
yay -S superfile-bin

Install Homebrew and then run the following command:

Terminal window
brew install superfile
Terminal window
nix profile install github:yorukot/superfile#superfile

Add superfile to your flake inputs:

inputs = {
superfile = {
url = "github:yorukot/superfile";
};
# ...
};

Then you can add it to your packages:

let
system = "x86_64-linux";
in {
environment.systemPackages = with pkgs; [
# ...
inputs.superfile.packages.${system}.default ];
}

Install Pixi and then run the following command:

Terminal window
pixi global install superfile

x-cmd is a toolbox for Posix Shell, offering a lightweight package manager built using shell and awk.

Terminal window
x env use superfile

After completing the installation, you can restart the terminal (if necessary).

Run spf to start superfile

Terminal window
spf