Ubuntu 18.4: доступ Наклона bashrc больше

Впервые я получил доступ к bashrc файлу. Я хотел создать ярлыки псевдонима.

Я не смог сделать что-либо и когда я закрыл терминал, я не могу получить доступ к нему больше.

Это дает мне следующее:

    # ~/.bashrc: executed by bash(3) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac

# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
    xterm-color|*-256color) color_prompt=yes;;
esac

# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
1
задан 27 March 2020 в 00:53

1 ответ

Зафиксируйте его путем замены поврежденного .bashrc со значением по умолчанию .bashrc от /etc/skel каталог:

  • Переключитесь на tty3 Ctrl+Alt+F3
  • Войдите в систему как корень
  • cp /etc/skel/.bashrc /home/youruser/
  • chown youruser:youruser /home/youruser/.bashrc
1
ответ дан 7 April 2020 в 23:27

Другие вопросы по тегам:

Похожие вопросы: