Help changing the PS1 prompt in Solaris


 
Thread Tools Search this Thread
Operating Systems Solaris Help changing the PS1 prompt in Solaris
# 8  
Old 04-29-2015
Quote:
Originally Posted by curiousmal
jlliagre: Yes I am:

twsapps@kdsan004:/opt/apps/twsapps> echo $SHELL
/bin/ksh

Any other thoughts ?
Hmm, you were complaining about getting this prompt in your initial question:

Code:
$LOGNAME@$HOSTNAME:${PWD}$MYPROMPT

but you are now showing this quite different prompt shows up:

Code:
twsapps@kdsan004:/opt/apps/twsapps>

Can you please clarify what is not working?
# 9  
Old 04-29-2015
jlliagre:

First of all, thank you for your willingness to help. You're very kind.
So, I got this prompt: twsapps@kdsan004:/opt/apps/twsapps> by defining PS1 in the .profile as : [CODE]PS1=$LOGNAME@$HOSTNAME1:$%7BPWD%7D$MYPROMPT"
Code:
PS1=$LOGNAME@$HOSTNAME1:${PWD}$MYPROMPT

(MYPROMPT was previously defined as : MYPROMPT="> ".

Here's my dilemma: When I'm at the prompt and I type, let's say: cd mydir, the prompt should change to
Code:
twsapps@kdsan004:/opt/apps/twsapps/mydir>

, meaning, it should display the current directory, which now is
Code:
twsapps@kdsan004:/opt/apps/twsapps/mydir

, but instead, it stays as
Code:
twsapps@kdsan004:/opt/apps/twsapps>

, which means PWD is not getting updated/refreshed.
I hope the problem is now clear.
Thanks again.

Last edited by Don Cragun; 04-29-2015 at 10:28 PM.. Reason: Change MAIL & COLOR tags to CODE tags; add CODE and ICODE tags.
# 10  
Old 04-29-2015
Have you tried what'd been suggest previously?
Code:
export PS1="[\$USER@\$(hostname):\$PWD] "

Also when you're at the shell prompt, provide the output of echo $0
# 11  
Old 04-29-2015
Put this in .profile:
Code:
export MYPROMPT="> "
[ -z "$HOSTNAME" ] && export HOSTNAME=`/bin/uname -n | /usr/bin/cut -f1 -d.`
export PS1='$LOGNAME@${HOSTNAME}:${PWD}$MYPROMPT'


# 12  
Old 04-29-2015
Vgersh99:

I changed PS1 to:

Code:
PS1="[\$USER@\$(hostname):\$PWD] "
export PS1

and I got this:

Code:
[$USER@$(hostname):$PWD] pwd
/opt/apps/twsapps
[$USER@$(hostname):$PWD] cd TWA
[$USER@$(hostname):$PWD] pwd
/opt/apps/twsapps/TWA

So it didn't work. Thanks though, and any other thoughts are welcome.

---------- Post updated at 03:55 PM ---------- Previous update was at 03:49 PM ----------

vgersh99: I forgot to show you this:

Code:
twsapps@kdsan004:/opt/apps/twsapps> echo $0
-sh


Last edited by Don Cragun; 04-29-2015 at 10:30 PM.. Reason: Attempt to fix tags.
# 13  
Old 04-29-2015
sh != ksh (at least on Solaris).
# 14  
Old 04-29-2015
MadeinGermany:

When I typed your suggestion, I get :

Code:
 HOSTNAME=kdsan004: is not an identifier

Also, if I type anything in ' ', I get the same stuff within the single quotes as a prompt:

Code:
 $LOGNAME@${HOSTNAME}:${PWD}$MYPROMPT

---------- Post updated at 04:11 PM ---------- Previous update was at 04:06 PM ----------

vgersh99: But at the beginning of my code I have:

Code:
 #!/bin/ksh (first line)

I even have this:

Code:
 SHELL=/bin/ksh
export SHELL

also, at the command line:
Code:
twsapps@kdsan004:/opt/apps/twsapps> echo $SHELL
/bin/ksh

finally, I checked the /etc/passwd file:

Code:
twsapps@kdsan004:/opt/apps/twsapps> more /etc/passwd |grep twsapps
twsapps:x:1200001858:20002:Service account for twsapps #cust# RM13600277:/opt/apps/twsapps:/bin/sh

Could that be the problem ? If so, how do I change the shell within the script, w/o changing the /etc/passwd file or is that absolutely necessary ?

Thanks.

Last edited by Don Cragun; 04-29-2015 at 10:33 PM.. Reason: Change EMAIL tags to CODE tags; add CODE tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

PS1 (Prompt character) appearing in cat output

RedHat Linux 5.8/Korn Shell I have text file name /etc/oracle/config.loc. It has the following text #Device/file getting replaced by device +OCR ocrconfig_loc=+DATA ocrmirrorconfig_loc=+OCRBut , when I open this file using cat , the PS1 character (for prompt) appears as the last character... (8 Replies)
Discussion started by: omega3
8 Replies

2. UNIX for Dummies Questions & Answers

Why is my PS1 breaking my prompt?

So, this is strange... I created this prompt: PS1='\n\e You can see that it's a pretty minor modification of the default Debian prompt. And, if it matters, I'm using Putty to SSH to my server. The following strange symptoms appear when I use that prompt, and disappear when I change and... (2 Replies)
Discussion started by: treesloth
2 Replies

3. Shell Programming and Scripting

Changing PS1

I have coded PS1 as shown, producing the following result when writing on the command line ┌─ cdl └──╼ make tracepdf2d If I make an error in the command an ✗ is printed ┌─ ✗ cdl └──╼ ls-a ls-a: command not found My problem is that if I just press enter, I do not want to have the... (3 Replies)
Discussion started by: kristinu
3 Replies

4. UNIX for Dummies Questions & Answers

[Solved] Help needed to have changing value to the command prompt string variable PS1

Hi, I am using git bash terminal window to do git operations. I have set the prompt string variable PS1 in the ~/.bashrc file as follows: export PS1=" " This is intended to show me the current git branch's name which is active as part of the prompt string. But, the problem is when I do a git... (2 Replies)
Discussion started by: royalibrahim
2 Replies

5. Shell Programming and Scripting

Ksh93 vs. Pdksh88: Custom PS1 prompt not working

Greetings! I have to work with a NFS user id between two hosts: A running Ksh 93 and B running pdksh 88. My problem has to do with the custom prompt I created on A: it works like a charm and display colors: PS1="$'\E But I switch over to B, it all goes to hell (private info... (4 Replies)
Discussion started by: alan
4 Replies

6. Shell Programming and Scripting

How to get a Prompt (PS1) Timestamp under /sbin/sh?

Hi, I'm trying to find out if there is a way to get a timestamp on my Solaris root shell prompt using /sbin/sh? I'm trying to archive something in line with the following: 12:34:26 root@server # 12:34:28 root@server # 12:34:28 root@server # ls ... 12:34:30 root@server # I know there... (1 Reply)
Discussion started by: Solarius
1 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

PS1 prompt

please advise what's wrong with this command ? PS1="`hostname`:`who am i | cut -d " " -f1`:>>" trying to make the PS1 prompt look like : machine_name:username:>> thank you (4 Replies)
Discussion started by: venhart
4 Replies

9. UNIX for Dummies Questions & Answers

colors in Prompt - $PS1

would someone please explain in detail, how does the code below change the color or bash prompt $ echo $PS1 :\033 are there other tricks like above? (3 Replies)
Discussion started by: rakeshou
3 Replies

10. Shell Programming and Scripting

PS1 with date stamp included in prompt

How would I put the date within my PS1 command for my shell prompt? I have it set to: PS1='$>' I tried PS1='$>' but that didn't work. (7 Replies)
Discussion started by: kymberm
7 Replies
Login or Register to Ask a Question