Show only current and parent directory in bash prompt

I’m new to bash and would like my prompt to show something that in tcsh was trivial, yet after a good google search I still cannot do.

I would like my prompt to include only the current and parent directories like this:

/parent/currentdir $

In tcsh this is achieved by:

set prompt = "%C2 %"

However in bash so far I have only found that I have to parse pwd to obtain the same output.

Isn’t there a simpler way, like doing:

export PS1="$(some_command) $"

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Bash’s prompt control features are rather static. If you want more control, you can include variables in your prompt; make sure you haven’t turned off the promptvars option.

PS1='${PWD#"${PWD%/*/*}/"} $ '

Note the single quotes: the variable expansions must happen at the time the prompt is displayed, not at the time the PS1 variable is defined.

If you want more control over what is displayed, you can use command substitutions. For example, the snippet above loses the ~ abbreviation for the home directory.

PS1='$(case $PWD in
        $HOME) HPWD="~";;
        $HOME/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
        $HOME/*) HPWD="~/${PWD##*/}";;
        /*/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
        *) HPWD="$PWD";;
      esac; printf %s "$HPWD") $ '

This code is rather cumbersome, so instead of sticking it into the PS1 variable, you can use the PROMPT_COMMAND variable to run code to set HPWD and then use that in your prompt.

PROMPT_COMMAND='case $PWD in
        $HOME) HPWD="~";;
        $HOME/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
        $HOME/*) HPWD="~/${PWD##*/}";;
        /*/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
        *) HPWD="$PWD";;
      esac'
PS1='$HPWD $'

Since the shortened prompt only changed on a directory change, you don’t need to recalculate it each time a prompt is displayed. Bash doesn’t provide a hook that runs on a current directory change, but you can simulate it by overriding cd and its cousins.

cd () { builtin cd "<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3e1a7e">[email protected]</a>" && chpwd; }
pushd () { builtin pushd "<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="ffdbbf">[email protected]</a>" && chpwd; }
popd () { builtin popd "<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="fadeba">[email protected]</a>" && chpwd; }
chpwd () {
  case $PWD in
    $HOME) HPWD="~";;
    $HOME/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
    $HOME/*) HPWD="~/${PWD##*/}";;
    /*/*/*) HPWD="${PWD#"${PWD%/*/*}/"}";;
    *) HPWD="$PWD";;
  esac
}
PS1='$HPWD $'

Note that you don’t need to, and should not, export PS1, since it’s a shell setting, not an environment variable. A bash PS1 setting wouldn’t be understood by other shells.

P.S. If you want a nice interactive shell experience, switch to zsh, where all of these (prompt % expansions largely encompassing tcsh’s, chpwd, etc.) are native features.

PS1='%2~ %# '

Method 2

Setting PROMPT_DIRTRIM=2 should be all you need.

Method 3

Prompt string can be easily changed in bash by editing the shell variable PS1. It stands for Prompt String 1. More info here.

For now fire up your bash shell.

vi ~/.bashrc

Append the PS1 definition in the file

`export PS1="$(basename $(dirname $PWD))/$(basename $PWD)"`

More tutorials here and here, to help you tweak it even more.

Method 4

The syntax for obtaining the parent and current directories is taken from Munai’s answer.

However, as noted by Gilles, that code only shows the current directory at the time .bashrc is loaded, but it won’t change as you navigate the system to other folders.

Having this in your .bashrc file makes the prompt automatically updated to your current directory:

prompt_command () {
    PS1='$(basename $(dirname "$PWD"))/$(basename "$PWD") $ '
}
PROMPT_COMMAND=prompt_command

Method 5

Adding export PROMPT_DIRTRIM=2 to your bash file will do it for recent versions of bash (v. 4+). Specifically, this alters the appearance of the w entry in the PS1 environment variable from full path to last two entries.

Final results looks like ../Documents/MyFolder

Method 6

May be simpler one with “~” for Home directory.

function PWDN {
  echo "${PWD/#$HOME/~}" | rev | cut -d "/" -f1 -f2 | rev
}

Method 7

export PS1='[<a href="https://getridbug.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="99ecd9">[email protected]</a>h $(basename $(dirname ${PWD}))/$(basename ${PWD})]$ '
export PROMPT_COMMAND='echo -ne "33]0;$(basename $(dirname $PWD))/$(basename ${PWD})07"'


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x