$PROMPT_COMMAND
–
Commands to Execute Before Printing The Prompt
$PROMPT_COMMAND is either an array or a regular variable. Each value is executed as a command before the primary
prompt $PS1 is executed.
This is only useful for interactive terminals.
Links
Examples
- Show number of files in
$HOMEin the prompt: 1 2 3PROMPT_COMMAND='_fileCount=$(ls ~ | wc -l)' PS1="$_fileCount files]$ " # next prompt will display the number of files
BashSupport Pro is a Bash IDE with support for $PROMPT_COMMAND – try it now!