PuTTY

PuTTY can be installed on Windows, MacOS and Linux. 

See also: WinSCP

Installation

Linux

sudo apt install putty

sudo apt install putty-tools

Dynamically Set Window Title

This is useful if you have multiple windows open and what to distinguish them from each other in some way. For example, if you set this in your .profile for the 'oracle' user (on a system with an Oracle database instance), then the window title will be changed to reflect the ORACLE_SID...

printf "\033]0;"${ORACLE_SID}"\007"

For other uses just replace ${ORACLE_SID} with any other variable or a literal stringYou should remove the inner set of double quotes if embedding a literal string.

Bibliography