You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
347 B
17 lines
347 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
#Создан: Пт 24 июн 2016 14:34:58
|
||
5 years ago
|
#Изменён: Пт 21 фев 2020 11:49:12
|
||
9 years ago
|
|
||
|
if [ ! -z $1 ]; then
|
||
|
DATA=$(cat "$@")
|
||
|
else
|
||
|
DATA=$(cat -)
|
||
|
fi
|
||
|
|
||
|
\rm -rf /tmp/*.speedreading
|
||
|
echo "$DATA" > /tmp/$$.speedreading
|
||
|
|
||
5 years ago
|
st -e bash -c "fsz 37 && tput clear && tput cup 7 && echo && speedread /tmp/$$.speedreading 2>/dev/null && read"
|
||
9 years ago
|
|