$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 3- PROMPT_COMMAND='_fileCount=$(ls ~ | wc -l)' PS1="$_fileCount files]$ " # next prompt will display the number of files
BashSupport Pro ist eine Bash IDE mit Unterstützung für $PROMPT_COMMAND – probieren Sie es aus!