как я могу решить ошибку oh my bash error после обновления?
После того, как я обновил свой bash, эта ошибка появляется, и каждый раз, когда я запускаю консоль, она появляется. Это приводит к тому, что я теряю все вещи, о, мой удар. Он показывает некоторые синтаксические ошибки, но я не знаю, как их решить.
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
-bash: /home/luismanzur/.oh-my-bash/lib/utils.sh: line 75: syntax error near unexpected token `$'{\r''
'bash: /home/luismanzur/.oh-my-bash/lib/utils.sh: line 75: `function _omb_util_setexit {
_omb_util_glob_expand: command not found
: command not found
: command not found
-bash: /home/luismanzur/.oh-my-bash/aliases/general.aliases.sh: line 26: syntax error near unexpected token `$'{\r''
'bash: /home/luismanzur/.oh-my-bash/aliases/general.aliases.sh: line 26: `function _omb_alias_general_cp_init {
_omb_util_function_exists: command not found
_omb_util_glob_expand: command not found
_omb_util_add_prompt_command: command not found
_omb_util_command_exists: command not found
(base) luismanzur@tululo:~$
Как я могу это решить?
1 ответ
отображать/прикреплять содержимое
utils.sh
и
general.aliases.sh
Используя поиск Google, я нашел:
https://gitcode.net/pattern/ohmybash/oh-my-bash/-/blob/master/aliases/general.aliases.sh?from_codechina=yes
содержание:
#!/usr/bin/env bash
alias cp='cp -iv' # Preferred 'cp' implementation
alias mv='mv -iv' # Preferred 'mv' implementation
alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation
alias ll='ls -lAFh' # Preferred 'ls' implementation
alias less='less -FSRXc' # Preferred 'less' implementation
alias nano='nano -W' # Preferred 'nano' implementation
alias wget='wget -c' # Preferred 'wget' implementation (resume download)
alias c='clear' # c: Clear terminal display
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths
alias show_options='shopt' # Show_options: display bash options settings
alias fix_stty='stty sane' # fix_stty: Restore terminal settings when screwed up
alias fix_term='echo -e "\033c"' # fix_term: Reset the conosle. Similar to the reset command
alias cic='set completion-ignore-case On' # cic: Make tab-completion case-insensitive
alias src='source ~/.bashrc' # src: Reload .bashrc file
26-я строка действительна:
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths