mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 14:23:31 +00:00
5 lines
170 B
Bash
Executable file
5 lines
170 B
Bash
Executable file
#! /bin/sh
|
|
|
|
while read -r input; do
|
|
echo "$input" | sed 's/\s\+/\n/g' | sed -n '/.\{5\}.\+/p'
|
|
done | fzf --height 10 | tr -d "\n" | kitty @send-text --stdin -m "id:$1"
|