screen
export PS1="screen$WINDOW \h \u \w \$ " Screen is a full-screen software program that can be used to multiplexes a physical console between several processes (typically interactive shells). It offers a user to open several separate terminal instances inside a one single terminal window manager. On my Ubuntu 10.04 Server Edition, Screen has been installed by default. But, in Linux Mint does not have screen installed by default, I need to install it first using apt-get command before using it. Please follow your distribution installation procedure to install screen. # apt-get install screen (On Debian based Systems) # yum install screen (On RedHat based Systems) Actually, Screen is a very good command in Linux which is hidden inside hundreds of Linux commands. Let’s start to see the function of Screen. Just type screen at the command prompt. Then the screen will show with interface exactly as the command prompt. pungki@mint ~ $ screen Show...