Opening the shell prompt, you must use these commands. Enter the command name and then press the Enter key to execute it. If the command is valid, the shell executes it and displays the result produced by the command.
date shows the current date and time on the system.
date [options] .... [+format]
» Date without arguments writes the date and time to the standard output in the form.
$ date
Wed Jul 13 01:49:10 PDT 2016
» date can also be used to display specific fields of the date.
$ date ”+%H %M”
14 12
cal displays a simple calendar. If arguments are not specified, the current month is displayed with the current day highlighted.
$cal [options]
man command shows all information about followed by a command. Press q to quit the manpage.
$man < command name >