im trying to print the current time and date to the screen each time a command is issued on sift linux (ubuntu 14) via command line.
so for example
sansforensics@siftworkstation:$ fdisk -l image.dd sansforensics@siftworkstation:$ output of command current time and date sansforensics@siftworkstation:$ im not looking for
start_time=`date +%s` <command-to-execute> end_time=`date +%s` echo execution time was `expr $end_time - $start_time` s. which prints out the time it took for the commands to run, im looking for the current date and time each time a command is issued.