为什么我的流浪汉要改造这条供应线:
echo "eval \"\$(starship init bash)\"" >> ~/.bashrc
在 .bashrc 的这一行中?
eval __main() { local major="${BASH_VERSINFO[0]}" local minor="${BASH_VERSINFO[1]}" if ((major > 4)) || { ((major == 4)) && ((minor >= 1)); }; then source <(/usr/local/bin/starship init bash --print-full-init) else source /dev/stdin <<<"$(/usr/local/bin/starship init bash --print-full-init)" fi } __main unset -f __main
这是执行的结果,$(starship init bash)
但它不应该执行,一旦我只做一个回显。
我怎样才能避免它?
编辑
使用单引号,结果相同,但已格式化。
我尝试echo "eval \"\$(starship init bash)\"" >> ~/.bashrc
在虚拟机中运行该命令,它运行良好。