16 lines
286 B
Bash
16 lines
286 B
Bash
#!/bin/bash
|
|
# usage:
|
|
## friendlyfriend [int seconds delay]
|
|
## friendlyfriend 30
|
|
|
|
if [ -z "$1" ]; then
|
|
sleep_seconds=5
|
|
else
|
|
sleep_seconds=$1
|
|
fi
|
|
|
|
while (true); do
|
|
clear
|
|
ponysay $(polygen /usr/share/polygen/eng/pornsite.grm | awk '{print $3}')
|
|
sleep $sleep_seconds
|
|
done |