__ /\ \__ _____ _ __ ___ ___ ___ _____\ \ ,_\ ____ /\ '__`\/\`'__\/ __`\ /' __` __`\/\ '__`\ \ \/ /',__\ \ \ \_\ \ \ \//\ \_\ \/\ \/\ \/\ \ \ \_\ \ \ \_/\__, `\ \ \ ,__/\ \_\\ \____/\ \_\ \_\ \_\ \ ,__/\ \__\/\____/ \ \ \/ \/_/ \/___/ \/_/\/_/\/_/\ \ \/ \/__/\/___/ \ \_\ \ \_\ \/_/ \/_/ ====================================================================== Fri Jun 12 2009 20:17:56 ------------------------------------------------------------ tcsh ---- > odin - root - [~] - (tcsh) > # ~/.cshrc set prompt="%U%m%u - %n - [%B%~%b] - (tcsh)\n%# " or set prompt="%U%m%u - %n - [%B%/%b] - (tcsh)\n%# " ----------------------------------------------------------- kshrc ---- > odin - root - [/root] - (ksh) :0 > 11# ~/.kshrc set -o emacs export HOSTNAME=$(hostname -s) export CRLF=' ' export PS1="${HOSTNAME} - ${USER} - [${PWD}] - (ksh) :${?}${CRLF}${HISTCMD}# " ------------------------------------------------------------- zsh ---- > odin - root - [ /root ] - (zsh) :0 > 2# ~/.zshrc export CRLF=' ' export PS1="%m - %n - [ %/ ] - (zsh) :${?}${CRLF}${HISTCMD}# " --------------------------------------------------------- cmd.exe ---- > W2KVM - Administrator - C:\WINNT - (cmd.exe) > # run with: "cmd.exe /k %USERPROFILE%\prompt.cmd" set prompt=%COMPUTERNAME% - %USERNAME% - [$P] - (cmd.exe)$_#$S ------------------------------------------------------------ bash ---- > odin - root - [ ~ ] - (bash) :0 > 1# ~/.bashrc export PS1='\h - \u - [\w] - (bash) :${?}\n\## ' ---- titlebar echo -e "\033]0;$(whoami)@$(hostname)\007" \e]2;\h\a export PS1='\[\h - \u - [ \e[1;32m\w\e[0;39m\e[m ] - (bash) :$?\n\## \e]2;\h\a\]' ---- colors export PS1='\h - \u - [ \e[1;32m\w\e[0;39m ] - (bash) :$?\n\## ' \e[1m Bold Text \e[4m Underline Text \e[5m Blink Text \e[7m Inverse Text Foreground colors: \e[0;30m Black \e[0;31m Red \e[0;32m Green \e[0;33m Yellow\Orange \e[0;34m Blue \e[0;35m Magenta \e[0;36m Cyan \e[0;37m Light Gray\Black \e[0;39m Default Bright foreground colors: \e[1;30m Dark Gray \e[1;31m Red \e[1;32m Green \e[1;33m Yellow \e[1;34m Blue \e[1;35m Magenta \e[1;36m Cyan \e[1;37m White \e[0;39m Default Background colors: \e[1;37m\e[40m Black \e[41m Red \e[42m Green \e[43m Yellow\Orange \e[44m Blue \e[45m Magenta \e[46m Cyan \e[47m Light Gray\Black \e[49m Default Attribute termcap xterm cons25 vt100 ---------------------------------------------------- bold on md 1 1 1 bold off 22 [m inverse on mr 7 7 7 inverse off 27 [m standout on so 7 7 7 standout off se 27 [m [m underline on us 4 NO 4 underline off ue 24 [m blink on mb NO 5 5 blink off 25 [m [m blank/invis mk 8 bell bl ^G ^G ^G all attr off me [m [m [m - Position the Cursor: \033[;H or \033[;f - Move the cursor up N lines: \033[A - Move the cursor down N lines: \033[B - Move the cursor forward N columns: \033[C - Move the cursor backward N columns: \033[D - Clear the screen, move to (0,0): \033[2J - Erase to end of line: \033[K - Save cursor position: \033[s - Restore cursor position: \033[u