Fixing Cygwin Command Line

How do I change my command line to the standard appearance? (i.e.: The pwd is listed in green above the actual command line).

Mine looks like

and I want it to look like this

Help?? :confused:

PS1 PS2 and PS3 environment determine your prompt.

Play around with PS1 until you get what you would like. i.e.,

echo $PS1

to see how things are set up, then

export PS1='$PWD >'

as an example -
or whatever you want.

Thanks! Fixed it! Just commented out the PS1 line.