Merge branch 'master' of ttm.sh:ph/git/dotfiles

This commit is contained in:
vulpine 2020-07-03 21:25:16 -05:00
commit 93dce5f656
1 changed files with 15 additions and 0 deletions

15
bin/mark Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
grep -l "$1" ~/.local/share/catgirl/log/*/*/* | shuf -n 30 | tr "\n" " " | xargs cat | grep '>' > /tmp/markylol
nextword(){ awk '{for (I=1;I<=NF;I++) if ($I == "'$1'") {print $(I+1)};}' /tmp/markylol | sed '/^$/d' | shuf -n 1 ; }
PASTWORD=$1
makesent(){ printf "%b " "$PASTWORD" ; PASTWORD=`nextword $PASTWORD | tr '"' "'"` ; [ -z "$PASTWORD" ] || makesent ; }
makesent
echo