mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
7 lines
132 B
Bash
Executable File
7 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
IFS=$'\n'
|
|
select topic in $(tail -n $(($(tput lines)-1)) "$HOME/.topics"); do
|
|
t "${topic%[*}"
|
|
exit
|
|
done
|