Best practice for command prompt mods

Toby Kelsey toby_kelsey at ntlworld.com
Sun Jun 18 12:44:48 UTC 2006


Tom Smith wrote:

> PS1='${debian_chroot:+($debian_chroot)}\u@`hostname --fqdn`:\w\$ '

My only comment is that this will run the command again each time you have an
interactive prompt.  If you want to avoid the (minor) overhead you could first
save the output in a variable:

   fqdn=$(hostname --fqdn)
   PS1= ... ${fqdn} ...

This will only run once when you start a new interactive shell.

Toby




More information about the ubuntu-users mailing list