Posts

Showing posts from July, 2023

Linux Command Prompt

Sample [2023-07-06][20:14:06] [myusername @ mypcname: ~] $ Code Can be placed in .bashrc, .bash_profile, ... (depending your your shell) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ##### modify standard command prompt # \n = new line; # \u = current username; # \w = current working dir (home = ~) ##### Colors # Black 0;30 Dark Gray 1;30 # Blue 0;34 Light Blue 1;34 # Green 0;32 Light Green 1;32 # Cyan 0;36 Light Cyan 1;36 # Red 0;31 Light Red 1;31 # Purple 0;35 Light Purple 1;35 # Brown 0;33 Yellow 1;33 # Light Gray 0;37 White 1;37 export PS1 = "\[\033[0;33m\][\D{%Y-%m-%d}][\t]\[\033[0;36m\] [\u\[\033[0;37m\]@\[\033[0;36m\]\h:\[\033[0;32m\]\w]\[\033[0m\] \n$ "