diff options
author | joe <rbo@gmx.us> | 2025-10-12 19:32:37 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-12 19:32:37 +0200 |
commit | 1b25dc73cd37716c0ce0d02e6ee433db7752a6ef (patch) | |
tree | f90375622563d4b15eb4917517edc2d5f896026b /.local/bin | |
parent | up (diff) | |
download | dotfiles-bsd-1b25dc73cd37716c0ce0d02e6ee433db7752a6ef.tar.gz dotfiles-bsd-1b25dc73cd37716c0ce0d02e6ee433db7752a6ef.tar.bz2 dotfiles-bsd-1b25dc73cd37716c0ce0d02e6ee433db7752a6ef.tar.xz dotfiles-bsd-1b25dc73cd37716c0ce0d02e6ee433db7752a6ef.tar.zst dotfiles-bsd-1b25dc73cd37716c0ce0d02e6ee433db7752a6ef.zip |
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/bcat | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.local/bin/bcat b/.local/bin/bcat new file mode 100755 index 0000000..e7286f1 --- /dev/null +++ b/.local/bin/bcat @@ -0,0 +1,7 @@ +#!/bin/sh + +tmp=$(mktemp) +cat - >$tmp +$BROWSER $tmp +sleep 2 +rm $tmp |