bashrc conf problem

mr_gnu

New Member
Joined
Jun 15, 2022
Messages
1
Reaction score
0
Credits
29
1.jpg

Problem: as you can see from my terminal, when i create new bash. I get this error message.

bash: eval: line 57: syntax error near unexpected token `('
bash: eval: line 57: `z() {'

But i can't find where is the problem. Any kinds of help will be appreciated. down below is my .bashrc config file.

#!/bin/bash

# shellcheck source=/dev/null

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

[ -f /etc/bash.bashrc ] && source /etc/bash.bashrc
[ -f $HOME/.bash_aliases ] && . $HOME/.bash_aliases
#[ -f $HOME/.bin/bashmarks.sh ] && . $HOME/.bin/bashmarks.sh
#[ -f $HOME/.bin/git-prompt.sh ] && . $HOME/.bin/git-prompt.sh
test -f $HOME/.bin/utils && . $HOME/.bin/utils

eval "$(lesspipe)"

## add git info
#PS1='${debian_chroot:+($debian_chroot)}\[\e[0;36m\]\w$(__git_ps1 "(%s)")\$\[\e[0m\] '

#[ -f $HOME/.lscolors ] && eval "$(tty -s && dircolors $HOME/.lscolors)" || eval "$(dircolors)"

export PROMPT_DIRTRIM=1
export HISTIGNORE="&:[ ]*:exit"
export HISTFILESIZE=2000
export HISTSIZE=2000
export BROWSER='/usr/bin/x-www-browser'
export PDFVIEWER='mupdf'
export EDITOR='vim'
export ALTERNATE_EDITOR="vim"
export PAGER='bat'
export BAT_PAGER='bat'
export BAT_STYLE="plain"
export LESSCHARSET=utf-8
#export IGNOREEOF=2
#export TESSDATA_PREFIX='/usr/local/share/tesseract-ocr/4.00'
tabs -4 &>/dev/null

# Use colors for less, man, etc.
[[ -f "$HOME/.LESS_TERMCAP" ]] && tty -s && . $HOME/.LESS_TERMCAP

#Set HADOOP_HOME
export HADOOP_HOME=/home/mr/hadoop
#Set JAVA_HOME
export JAVA_HOME=/usr/share/java
# Add bin/ directory of Hadoop to PATH
export PATH=$PATH:$HADOOP_HOME/bin
[ -x "/usr/bin/zoxide" ] && eval "$(zoxide init bash)"
[ -x "$HOME/.cargo/bin/starship" ] && eval "$(starship init bash)"

[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"
#[ -f "$HOME/.config/broot/launcher/bash/br" ] && source "$HOME/.config/broot/launcher/bash/br"

export SKIM_DEFAULT_COMMAND="fd --type f || rg --files || find ."

export PATH=/bin/lscript:/bin/lscript:/home/mr/.bin:/home/mr/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/home/mr/hadoop/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/mr/hadoop/bin
 


But i can't find where is the problem
Line 57? I copied/pasted that to a file, and only got 55 lines. I'm no expert by any means, but my .bashrc file has this:
Bash:
# If not running interactively, don't do anything
case $- in
    *i*) ;;
      *) return;;
esac
and yours has
Bash:
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
Don't know the difference, like I said I'm no expert, and my .bashrc file is pretty much the default, plus a few tweaks of my own. I'm on Debian, by the way. What distro are you on?
 
Last edited:
Please put any code in a code block. Makes it easier to consume.
code block location.jpg


Like @Tolkem , I copied the text and only got 54 lines. Also, I don't see any z(). I'm thinking maybe the error is in one of the other referenced files, such as
/etc/bash.bashrc
$HOME/.bash_aliases
$HOME/.bin/utils
$HOME/.lscolors
$HOME/.LESS_TERMCAP
$HOME/.cargo/env
I may have missed some.
 
Where is the rest of your bashrc ?
I am on Debian and the default file has 114 lines or so before any of the things I added.
Code:
# ~/.bashrc: executed by bash(1) 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
force_color_prompt=yes

if [ -n "$force_color_prompt" ]; then
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
    # We have color support; assume it's compliant with Ecma-48
    # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
    # a case would tend to support setf rather than setaf.)
    color_prompt=yes
    else
    color_prompt=
    fi
fi

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w \$\[\033[00m\] '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
    alias ls='ls --color=auto'
    #alias dir='dir --color=auto'
    #alias vdir='vdir --color=auto'

    alias grep='grep --color=auto'
    alias fgrep='fgrep --color=auto'
    alias egrep='egrep --color=auto'
fi

# colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'

# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
  if [ -f /usr/share/bash-completion/bash_completion ]; then
    . /usr/share/bash-completion/bash_completion
  elif [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
  fi
fi
 
In Ubuntu/Debian, there is a default version of the .bashrc file in the /etc/skel/ directory, so if you have problems with it you can restore it.
To do so follow the next steps:
Backup your current .bashrc file:
Code:
cp ~/.bashrc ~/.bashrc.bak
Copy the skeleton .bashrc file over yours:
Code:
cp /etc/skel/.bashrc ~/
Now load the new one:
Code:
source ~/.bashrc
reboot
 
In Ubuntu/Debian, there is a default version of the .bashrc file in the /etc/skel/ directory, so if you have problems with it you can restore it.
I didn't know this. Thanks for the tip. :)
 
yep a "hidden" file
I have one question, tho. Don't we need root access to copy that file?
Code:
sudo cp /etc/skel/.bashrc ~/
I think we do.

EDIT: Now I see it :)
Code:
ls /etc/skel/ 
./  ../  .bash_logout  .bashrc  .profile
EDIT2: Ok, I just answered my own question, lol We don't need root access to copy that file. I just tried:
Code:
cp /etc/skel/.bashrc ~/_bashrc.new
And it worked without issues:

1655390206643.png
 
Last edited:
Nice. I didn't know about the /etc/skel/bashrc
And no you do not need root/sudo to copy it to Your /home
 

Staff online

Members online


Top