To know the default PS4 prompt use echo command to see whats stored in it.
echo default PS4 prompt
echo $PS4
Sample output:
+
We can change the PS4 promte to a meaning full sentence so that it will be usefull for debugging.
Changing PS4 promt
PS4=’at Line number:${LINENO} #’
If you set above prompt and use it in shell scripts, it will help you to know which line in the script is throwing it? For example take below script where we set PS4 to ‘at Line number:${LINENO} #’
#!/bin/bash
PS4=’at Line number:${LINENO} #’
read -p “testing the test: ” VAR1 VAR2
echo “VAR1 value is $VAR1”
echo “VAR2 value is $VAR2”
Save the above file as testsh.sh and execute it by enabling debugging.
bash -x testsh.sh
+ PS4=’at Line number:${LINENO} #’
at Line number:3 #read -p ‘testing the test: ‘ VAR1 VAR2
testing the test: asdfas asdfasd
at Line number:4 #echo ‘VAR1 value is asdfas’
VAR1 value is asdfas
at Line number:5 #echo ‘VAR2 value is asdfasd’
VAR2 value is asdfasd
If you see above example it’s very much usefull when executing scripts. PS4 supports System variables defination in it’s prompt as well as some special charecters as shown below.
d – the date in “Weekday Month Date” format (e.g., “Tue May 26”)
e – an ASCII escape character (033)
h – the hostname up to the first .
H – the full hostname
j – the number of jobs currently run in background
l – the basename of the shells terminal device name
n – newline
r – carriage return
s – the name of the shell, the basename of $0 (the portion following the final slash)
t – the current time in 24-hour HH:MM:SS format
T – the current time in 12-hour HH:MM:SS format
@ – the current time in 12-hour am/pm format
A – the current time in 24-hour HH:MM format
u – the username of the current user
v – the version of bash (e.g., 4.00)
V – the release of bash, version + patch level (e.g., 4.00.0)
w – Complete path of current working directory
W – the basename of the current working directory
! – the history number of this command
# – the command number of this command
$ – if the effective UID is 0, a #, otherwise a $
nnn – the character corresponding to the octal number nnn
– a backslash
[ – begin a sequence of non-printing characters, which could be used to embed a terminal control sequence into the prompt
] – end a sequence of non-printing characters
And we can do many things with this PS4 prompt. We will see them in our comming posts in detail.
Latest posts by Surendra Anne (see all)
- Docker: How to copy files to/from docker container - June 30, 2020
- Anisble: ERROR! unexpected parameter type in action:
Fix - June 29, 2020 - FREE: JOIN OUR DEVOPS TELEGRAM GROUPS - August 2, 2019
- Review: Whizlabs Practice Tests for AWS Certified Solutions Architect Professional (CSAP) - August 27, 2018
- How to use ohai/chef-shell to get node attributes - July 19, 2018