每当我打开终端时,我都会得到如下信息:
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
我不确定这是什么,也不知道这对 Linux 有什么意义。如能得到任何帮助,我将不胜感激。
答案1
这是命令的输出alias
,显示了 shell 上定义的所有别名。(有关它的更多信息,请键入man alias
;别名的解释见“Bash 内置命令”)。
这意味着.bashrc
你的文件中的某处有这一行:
alias
将其删除,您就可以开始了。