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