summarize - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
summarize (136B) | |
--- | |
1 #!/bin/bash | |
2 | |
3 export PATH="$HOME/bin:$PATH" | |
4 | |
5 { | |
6 printf "Please summarize following text:" | |
7 cat | tr '\n' ' ' | sed 's/ */ /g' | |
8 } | gpt | |
9 |