Simple development script runner that builds itself on first use.
git clone https://git.mz.uy/marianozunino/dev
cd dev
./dev
./dev run # Run all scripts
./dev run docker # Run scripts matching "docker"
./dev ls # List available scripts
./dev new backup # Create new script template
./dev push # Git push with security scan
The ./dev script:
bin/dev-linux-{arch} if neededsudo pacman -S go (or your distro's equivalent)project/
├── dev* # Launcher script
├── main.go # Source code
├── Makefile # Build helper
├── bin/ # Built binaries
├── runs/ # Your scripts
└── logs/ # Execution logs
That's it! Clone and run ./dev to get started.