Skip to content

Getting Started

System Requirements

  • You must be running Linux.
  • You must be logged in as a root user or a non-root user with sudo privileges.

One Time Setup (Required)

  1. Install packages.

    # APK Systems (Alpine)
    sudo apk add curl git
    # APT Systems (Debian, Ubuntu, etc)
    sudo apt-get install curl git
    # DNF Systems (Fedora)
    sudo dnf install curl git
    # Pacman Systems (Arch, Manjaro, EndeavourOS, etc.)
    sudo pacman -Sy curl git
    # YUM Systems (CentOS)
    sudo yum install curl git
    
    # Install Task
    sudo sh -c "$(curl -L https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
    
  2. Clone the repository to your local machine.

    sudo git clone https://github.com/zikoengtsik/auxiliary /usr/local/share/auxiliary
    
  3. Restart shell. Now you can execute task -d /usr/local/share/auxiliary to show all tasks.

    task -d /usr/local/share/auxiliary
    # task: Available tasks for this project:
    # * default:                List all tasks.
    # * ...