305 current 2025-01-25 21:36:27 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-25 22:08:07 -05:00
parent 16a0fe100a
commit 7ad57696df

16
scripts/termbin/tb.nix Normal file
View File

@@ -0,0 +1,16 @@
# scripts.nix
{pkgs, ...}: {
home.packages = with pkgs; [
(writeShellApplication {
name = "termbin";
runtimeInputs = with pkgs; [
netcat
];
text = ''
file=$1
cat "$1" | nc termbin.com 9999
'';
})
];
}