Files
util.nix/package/printprogress.nix
2025-02-14 21:06:51 +03:00

7 lines
145 B
Nix

{pkgs, ...}: let
name = "printprogress";
in
pkgs.writeShellScriptBin "${name}" ''
printf "%s%s%s\n" "''${YELLOW}" "$*" "''${RESET}"
''