How to display current time in the prompt


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to display current time in the prompt
# 1  
Old 10-02-2012
Java How to display current time in the prompt

Hello All,

I would like to display the current time in prompt.

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 $

Please help.

Thank you - Manish

Last edited by Scott; 10-03-2012 at 05:18 PM.. Reason: Use code tags, please...
# 2  
Old 10-02-2012
Code:
export INTERVAL=1 
export SCRIPT="something.py" 
 
while [ true ] 
    do 
    clear 
    python ${SCRIPT} 
    sleep ${INTERVAL} 
    done

not sure if it helps.. googled..
# 3  
Old 10-02-2012
If your shell is bash you can use:

Code:
PS1='\D{%k:%M:%S} $ '

For ksh95/pdksh try:

Code:
PS1='$(date +%k:%M:%S) $ '

Otherwise try this: https://www.unix.com/shell-programmin...rent-time.html

Last edited by Chubler_XL; 10-03-2012 at 12:00 AM..
# 4  
Old 10-03-2012
Hello,

Thank you for replying but both the options are not working.

Please suggest other options to display the current time in prompt.
# 5  
Old 10-03-2012
Hey,

Thats works for me:
Code:
export PS1=$(date +%k:%M:%S)$

What shell and OS do you use?
# 6  
Old 10-03-2012
Quote:
Originally Posted by bregtux
Hey,

Thats works for me:
Code:
export PS1=$(date +%k:%M:%S)$

What shell and OS do you use?

I use ksh.
# 7  
Old 10-03-2012
bash
Code:
trap 'PS1="$(date ) > "' 17

ksh
Code:
trap 'PS1="$(date ) > "' 47

I don't see a problem setting both traps in either shell. (date +...) whatever format in each system can be used.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Prompt path display issue

I use the following command to print the current directory above the command prompt set prompt="`exec pwd`\n$USER@`hostname -s` %B: % > " The output is something like this <current path> $USER@hostname > But when I try to CD to any other directory and press the return key, the... (6 Replies)
Discussion started by: aelhosiny
6 Replies

2. Shell Programming and Scripting

Convert UTC time into current UNIX sever time zone

Hi guys thanks for the help for my previous posts.Now i have a requirement that i download a XMl file which has UTC time stamp.I need to convert UTC time into Unix server timezone. For ex if the time zone of unix server is CDT then i need to convert into CDT.whatever may be the system time... (5 Replies)
Discussion started by: mohanalakshmi
5 Replies

3. Shell Programming and Scripting

Displaying current date time of EDT in IST time

Hi Folks, My server time is in EDT. And i am sending automated mails from that server in which i need to display the current date time as per IST (GMT+5:30). Please advice how to display the date time as per IST. IST time leads 9:30 mins to EDT. and i wrote something like below. ... (6 Replies)
Discussion started by: Showdown
6 Replies

4. HP-UX

Unable to Set Prompt to current working DIR

HPUX does not recognise \h,\w,\u to display the hostname,working directory and username respectively. So how do i set the PS1 variable to display my current working Directory as my prompt? I also tried PS1=$PWD, But it keeps showing the same directory path as prompt which PWD was holding at... (3 Replies)
Discussion started by: Amit Kulkarni
3 Replies

5. UNIX for Dummies Questions & Answers

Displaying the current working directory in prompt

Hi, I want that the prompt that is being displayed (i.e $ sign) should display always the current directory I am working in instead of that $ sign example: as we use PS1=patric and the prompt changes from $ to patric OR if we write the command PS1=`pwd` it will display the current... (5 Replies)
Discussion started by: premjotsingh
5 Replies

6. Shell Programming and Scripting

Current working directory in prompt

Can someone tell me how do i set my current working directory in my prompt? Note: I dont want to use env variable PWD and using `pwd` gives me only my home directoy. suggest a different way ? I use /bin/sh thanks!! (3 Replies)
Discussion started by: yesmani
3 Replies

7. Shell Programming and Scripting

Help setting PS1 prompt to include current time

Hi, I'm using the ksh shell and I'd like to set my PS1 prompt on an AIX system to include, amongst ther things, the current time. This was my best effort: export PS1=$(date -u +%R)'${ME}:${PWD}# ' but this only sets the time to the value when PS1 is defined and the time value doesn't... (4 Replies)
Discussion started by: m223464
4 Replies

8. UNIX for Dummies Questions & Answers

Getting current work directory in Command Prompt

How to get the current working directory as part of the command prompt? Every time I chage the folder, my command prompt path shoud change. I am using Korn Shell. Any help is greatly appreciated. (3 Replies)
Discussion started by: MeganP
3 Replies

9. Solaris

no boot prompt display

just put blank harddisk in my ultra10. i see no display to show me the boot> prompt. i don't know what happened....?? Got a third party graphic card. Display was ok. Monitor seems to be ok. i used different one with same result. (1 Reply)
Discussion started by: S26+
1 Replies

10. Shell Programming and Scripting

current directory as part of the csh prompt

I would like my csh prompt to behave like the linux csh prompt setting done by linux command (set prompt="%n@%m %c]$ ") how do I do that? What I'm trying to do is that I would like to see what directory I'm in by looking at the prompt. I've figured out that %n is like $user, and %m is like... (3 Replies)
Discussion started by: jamesloh
3 Replies
Login or Register to Ask a Question