Answer:I tried using following command:
Code:
export PS1="$(date +%k:%M:%S) $ "
but it gave me a fixed time in prompt whereas my objective is to get the current time everytime.
Code:
$ export PS1="$(date +%k:%M:%S) $ "
17:42:42 $
17:42:42 $ date
Tue Oct 2 17:42:54 PDT 2012
17:42:42 $
Explanation: