Changing PS1


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Changing PS1
# 1  
Old 11-20-2012
Changing PS1

I have coded PS1 as shown, producing the following result when writing on the command line

Code:
┌─ cdl[/media/ios120/chrisd/tomso-12.04/source]
└──╼ make tracepdf2d

If I make an error in the command an ✗ is printed
Code:
┌─ ✗ cdl[/media/ios120/chrisd/tomso-12.04/source]
└──╼ ls-a
ls-a: command not found

My problem is that if I just press enter, I do not want to have the ✗ printed.




Code:
    PS1="\[\033[0;37m\]\342\224\214\342\224\200\$([[ \$? != 0 ]] && echo \" \[\033[0;31m\]\342\234\2
27\[\033[0;37m\]\342\224\")$(if [[ ${EUID} == 0 ]]; then echo '\[\033[0;31m\]\h'; else echo '\[\033[
01;33m\] cdl'; fi)\[\033[0;37m\][\[\033[01;34m\]\w\[\033[0;37m\]]\n\[\033[0;37m\]\342\224\224\342\22
4\200\342\224\200\342\225\274 \[\033[0m\]"

# 2  
Old 11-20-2012
Insert a 'true' after it to force $? back to 0.

Unfortunately this will change the value of $? if you were wanting to depend on it later...
# 3  
Old 11-20-2012
Not sure how to use 'true'
# 4  
Old 11-20-2012
Quote:
Originally Posted by Corona688
Insert a 'true' after it to force $? back to 0.

Unfortunately this will change the value of $? if you were wanting to depend on it later...
Command substitution never affects the value of $?, and that's the only way to execute anything from within the prompt string.

I don't think it's possible to cause the expansion of PS1 to alter the value of $?. If you (or anyone else) knows of a way, I'd appreciate knowing about it.


Quote:
Originally Posted by kristinu
Code:
    PS1="\[\033[0;37m\]\342\224\214\342\224\200 ...

My problem is that if I just press enter, I do not want to have the ✗ printed.
Since you neglected to be specific, I'm assuming this is for bash.

It seems like what you need is a way to detect when no command was entered at the prompt. Bash makes available the command number through the escape sequence \#. This value (at least with the version with which I tested) is not incremented for a null command. Testing its current value against its value at the time of the previous prompt's expansion should be sufficient to make a determination.

Since any variables set in the command substition subshell are lost when the shell exists, and since environmental changes cannot propagate from a child to a parent, the only way to store the command number for future inspection is to write it to a file.

The following example is intended only as a proof of concept. Aside from the minor inefficiency of reading a file for each prompt, it doesn't support simultaneously interactive shells (although it could, with some work and help from $$). The prompt consists simply of the exit status followed by a colon and a space. If no command was entered, regardless of the value of $?, a 0 is printed (analgous to not printing the X in your original problem statement):
Code:
PS1='$(ES=$?; LC=$(< ~/.lastcmd); if [ \# -eq ${LC:-0} ]; then echo 0; else echo $ES; fi; echo \# > ~/.lastcmd): '

Regards,
Alister
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 - change

Hello I am attempting to generate a bash scrip that prompts me at loggin to change my PS1 - However, I am running into an issue w/ the code. #!/bin/bash #the point of this script is to that it automates and changes my prompts every day msg1="What do you feel like adding today :" echo... (11 Replies)
Discussion started by: D'go
11 Replies

2. Solaris

Help changing the PS1 prompt in Solaris

Hi, I need help changing PS1 in Solaris. I tried this: MYPROMPT="> " PS1=$LOGNAME@$HOSTNAME:${PWD}$MYPROMPT (NOT SURE WHY IT'S HIGHLIGHTED HERE) export PS1 My problem is that $PWD is not working, when I get the prompt and I change directories, the prompt is not displaying the current... (17 Replies)
Discussion started by: curiousmal
17 Replies

3. 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

4. Shell Programming and Scripting

PS1 challenge

Ok then i Have a challenge for you : Give me PS1 so that it always display the least 2 levels of directory (except if i am above of course) I want it this way : so if i go to / /home/ /home/user /home/user/whatever /home/user/whatever1/whatever2 my PS1 should respectively... (12 Replies)
Discussion started by: ctsgnb
12 Replies

5. Shell Programming and Scripting

Help with Export PS1 I think :-0

I am 100% new to Unix and trying to learn. This is my first time even touching a script in Unix. We have the following variable script that I am trying to run.... ################################## ###### variable test### ################################## Hostname=`hostname`... (3 Replies)
Discussion started by: LRoberts
3 Replies

6. 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

7. UNIX for Dummies Questions & Answers

PS1 problem

can anyone tell me how to change the $ prompt by calling a variable. Say for example i called a var 'enable' I and would like the $ prompt to change to a phrase like 'my prompt' any help would be great (1 Reply)
Discussion started by: pg080394
1 Replies

8. UNIX for Advanced & Expert Users

PS1 variable

I want to set my prompt to something more descriptive than a plain old $, so I set the PS1 variable as such: PS1="" Which changes the prompt correctly, but when I change directories, it does not update the prompt. So I tried this: PS1="`pwd`>" I get the same results when changing... (2 Replies)
Discussion started by: dangral
2 Replies

9. UNIX for Dummies Questions & Answers

Very simple question about changing PS1 variable at startup!

Hello there ! I am new in this Unix world and just start learning Unix. I have very simple question about changing PS1 variable (Shell Prompt) i have local.profile file in my working directory, i open in vi edit mode and add this line PS1="Hello:>" and i save that file. I disconnected from... (2 Replies)
Discussion started by: abidmalik
2 Replies

10. UNIX for Dummies Questions & Answers

I changed PS1 and now ....

Hello I am using Debain Potato and I changed the PS1. When I log in locally everythink is fine, except that when I enter a long row without hitting enter, then it word wraps automatically. And it does it not at the end of the row, it does it in the middle of the row! It also does not writes... (7 Replies)
Discussion started by: Fwurm
7 Replies
Login or Register to Ask a Question