prwd is a replacement for your shell's PS1, it provides a simple templating language with commands to customize your prompt. prwd keeps your prompt consistent between shells, provides fast template commands to get your hostname, git or mercurial branch without an inordinate amount of slow shell scripting.
Add the following line in your shell's config file (e.g. .profile or .bashrc):
export PS1='`prwd`'
All the commands start with ${ and end with }, anything else is considered static. Commands within the brackets have flags similarly to standard UNIX tools. Here is an example template definition:
${date} ${hostname}:${branch}:${path -l 24}${uid}
Which would render as:
18:29:22 prometheus:master:/tmp$
Your prompt template can be defined in three different places:
Check the prwdrc(5) man page for detailed command information. The following commands are available:
If you use the path command in your prompt template, defining aliases will allow path to shorten your current path using your own defined keywords. For example, add the following to your .prwdrc file:
alias *prwd /home/tamentis/projects/prwd
And navigating to /home/tamentis/projects/prwd/doc will allow prwd to reduce your current path to *prwd/doc. Another good example is that "~" is a default alias for prwd, you can create more of these ultra-short aliases if you want.
$ ./configure $ make $ sudo make install
Last updated: 2018-09-11 18:40:41