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.
21 lines
449 B
21 lines
449 B
#!/bin/bash
|
|
source fnc_gonzy.sh
|
|
|
|
function fnc_principal(){
|
|
fnc_gonzy_intro "TXT Lorem" "Obtiene texto Lorem."
|
|
|
|
echo -e "\n"
|
|
read -p "Cuantos parrafos?: " VarParr
|
|
clear
|
|
fnc_msg_color 3 "Obteniendo Lorem..."
|
|
echo -e "\n"
|
|
sleep 1
|
|
curl -s http://metaphorpsum.com/sentences/${1-$VarParr} | termux-clipboard-set
|
|
termux-clipboard-get | grep . | cowsay
|
|
|
|
echo -e "\n"
|
|
fnc_msg_color 1 "Servido Gonzy!"
|
|
echo -e "\n"
|
|
}
|
|
|
|
fnc_principal |