11 lines
197 B
Nix
11 lines
197 B
Nix
{pkgs, ...}: {
|
|
tb = pkgs.writeShellApplication {
|
|
name = "termbin";
|
|
runtimeInputs = with pkgs; [netcat];
|
|
text = ''
|
|
file=$1
|
|
cat "$file" | nc termbin.com 9999
|
|
'';
|
|
};
|
|
}
|