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);
# vi /etc/inittab
id:5:initdefault:
id:3:initdefault:
# reboot
$ORIGIN mydomain.com.
$TTL 86400
@ IN SOA dns1.mydomain.com. hostmaster.mydomain.com. (
2001062501 ; serial
21600 ; refresh after 6 hours
3600 ; retry after 1 hour
604800 ; expire after 1 week
86400 ) ; minimum TTL of 1 day
;
;
IN NS dns1.mydomain.com.
IN NS dns2.mydomain.com.
dns1 IN A 10.0.1.1
IN AAAA aaaa:bbbb::1
dns2 IN A 10.0.1.2
IN AAAA aaaa:bbbb::2
;
;
@ IN MX 10 mail.mydomain.com.
IN MX 20 mail2.mydomain.com.
mail IN A 10.0.1.5
IN AAAA aaaa:bbbb::5
mail2 IN A 10.0.1.6
IN AAAA aaaa:bbbb::6
;
;
; This sample zone file illustrates sharing the same IP addresses
; for multiple services:
;
services IN A 10.0.1.10
IN AAAA aaaa:bbbb::10
IN A 10.0.1.11
IN AAAA aaaa:bbbb::11
ftp IN CNAME services.mydomain.com.
www IN CNAME services.mydomain.com.
;
;
Find the Process ID
netstat -a -o -n
to determine the pid
of the process running on the used port (80, 3000, etc)