From 816196271334127d5ab78cc272cf12e556834116 Mon Sep 17 00:00:00 2001 From: Mishan Regmi Date: Tue, 13 Dec 2022 02:07:18 +0530 Subject: [PATCH] Change in Option Number 7 The option here doesn't work on the lab exercise. There are few characters wrong in number 7 answer --- .../02-Working-With-Shell-Part-I/06-Lab-Linux-Bash-Shell.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/02-Working-With-Shell-Part-I/06-Lab-Linux-Bash-Shell.md b/docs/02-Working-With-Shell-Part-I/06-Lab-Linux-Bash-Shell.md index a557a8a..00507dc 100644 --- a/docs/02-Working-With-Shell-Part-I/06-Lab-Linux-Bash-Shell.md +++ b/docs/02-Working-With-Shell-Part-I/06-Lab-Linux-Bash-Shell.md @@ -30,7 +30,7 @@ Example: **`[Wed Apr 22]bob@caleston-lp10:~$`** Make sure the change is made persistent. ``` - PS1='[\d]\u@\h:\w\$' + PS1='[\d]\u@\h:\w$' or - echo 'PS1=[\d]\u@\h:\w$' >> ~/.profile - ``` \ No newline at end of file + echo 'PS1="[\d]\u@\h:\w$"' >> ~/.profile + ```