mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
5 lines
153 B
Bash
5 lines
153 B
Bash
|
#!/bin/bash
|
||
|
while read -r input; do
|
||
|
echo $input | sed 's/\s\+/\n/g' | sed -n '/.\{5\}.\+/p'
|
||
|
done | fzf --height 10 | tr -d '\n' | xargs tmux send-keys
|