gnome-terminal: 새 탭에서 디렉토리 추적

gnome-terminal: 새 탭에서 디렉토리 추적

저는 Arch Linux를 사용하고 있는데 새 터미널 탭을 열면 항상 로 이동합니다 $HOME. 새 탭을 열 때 이전에 있던 디렉토리에서 쉘이 열리도록 하려면 어떻게 해야 합니까?

답변1

하나 있다허점이 질문과 관련됨

당신이 해야 할 일은 .bashrcor 에 다음 줄을 추가하는 것 뿐입니다 .zshrc.

. /etc/profile.d/vte.sh

적어도 Arch에서는 스크립트가 bash 또는 zsh를 실행 중인지 확인하고 그렇지 않으면 종료됩니다.

답변2

교차 게시도 가능합니다이것SuperUser의 Hacky 솔루션:

[This]는 각 명령 후에 현재 폴더를 파일에 저장하고(제 생각에는 별로 문제가 되지 않습니다) 저장된 현재 폴더에서 새 터미널을 엽니다.

다음을 추가하세요..zshrc[또는.bashrc]

# emulate bash PROMPT_COMMAND (only for zsh)
precmd() { eval "$PROMPT_COMMAND" }
# open new terminal in same dir
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"

새 디렉토리를 열면 마지막으로 사용한 디렉토리에도 저장됩니다.창문.

답변3

@swalog 그의 작품은 나에게 영감을 준다논평vte.sh프롬프트나 터미널 제목을 수정 하지 않고 불필요한 부분을 모두 제거합니다 . 나는 그것을 사용하지 않으므로 관련 코드를 zsh제거했습니다 .zsh

# Copyright © 2006 Shaun McCance <[email protected]>
# Copyright © 2013 Peter De Wachter <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# 28 Sep 2019: Tukusej’s Sirs modified this by stripping down all unnecessary parts for his usage
# (src: https://unix.stackexchange.com/questions/93476/gnome-terminal-keep-track-of-directory-in-new-tab#comment219157_93477)

# Not an interactive shell?
[[ $- == *i* ]] || return 0

# Not running under vte?
[ "${VTE_VERSION:-0}" -ge 3405 ] || return 0

__vte_urlencode() (
    # This is important to make sure string manipulation is handled
    # byte-by-byte.
    LC_ALL=C
    str="$1"
    while [ -n "$str" ]; do
        safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}"
        printf "%s" "$safe"
        str="${str#"$safe"}"
        if [ -n "$str" ]; then
            printf "%%%02X" "'$str"
            str="${str#?}"
        fi
    done
)

__vte_prompt_command() {
    local command=$(HISTTIMEFORMAT= history 1 | sed 's/^ *[0-9]\+ *//')
    command="${command//;/ }"
    local pwd='~'
    printf "\033]7;file://%s%s\007" "${HOSTNAME:-}" "$(__vte_urlencode "${PWD}")"
}

case "$TERM" in
    xterm*|vte*)
        [ -n "$BASH_VERSION" ] && PROMPT_COMMAND="${PROMPT_COMMAND};__vte_prompt_command"
        ;;
esac

관련 정보