$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.

Examples

Show number of files in $HOME in 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_COMMANDprobieren Sie es aus!
© 2020–2024 Joachim Ansorg
Impressum
Datenschutz
Rechtliches