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

7 lines
142 B
Nix

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