Use the following utility "apropos"
To find any command ( or command description ) that contains "time" substring.
#apropos time
It was a nice time going out with my closest friends Khaled, Arabaty and Ayman in our regular Friday night outing dinner.
This week 3 Ayman relatives, Osama Ahmed and Mohamed, joined us in that dinner at Falafel Corner restaurant.
TBC..
var i = 0; // dots counter
setInterval(function() {
process.stdout.clearLine(); // clear current text
process.stdout.cursorTo(0); // move cursor to beginning of line
i = (i + 1) % 4;
var dots = new Array(i + 1).join(".");
process.stdout.write("Waiting" + dots); // write text
}, 300);