Installation
Binary Downloads
Download the latest release for your platform from GitHub releases:
- macOS (Apple Silicon):
dlitescript-darwin-arm64 - macOS (Intel x64):
dlitescript-darwin-x64 - Linux (ARM32):
dlitescript-linux-arm - Linux (ARM64):
dlitescript-linux-arm64 - Linux (x64):
dlitescript-linux-x64 - Windows (ARM32):
dlitescript-win32-arm.exe - Windows (ARM64):
dlitescript-win32-arm64.exe - Windows (x64):
dlitescript-win32-x64.exe
Installation Steps
Download the binary for your platform
Make the file executable (Not needed for Windows):
chmod +x dlitescript-linux-x64Move the file to your PATH, to call the command from any directory (optional):
For Unix-like systems:
sudo mv dlitescript-linux-x64 /usr/local/bin/dlitescriptFor Windows:
Move-Item dlitescript-win32-x64.exe $env:USERPROFILE\bin\dlitescript.exeRun DLiteScript:
If not moved to PATH:
./dlitescript script.dlIf moved to PATH:
dlitescript script.dl
Building from Source
Prerequisites
- Go 1.24.6 or later
- Git
Build Steps
Clone the repository:
git clone https://github.com/Dobefu/DLiteScript.git cd DLiteScriptDownload dependencies:
go mod downloadBuild the binary:
go build -buildvcsRun DLiteScript:
./dlitescript your-script.dl