我正在使用Fedora 25,并将以下别名添加到我的bash配置文件中:
alias releasenotes="dnf updateinfo --refresh info `dnf check-update | cut -d '.' -f 1 | xargs` | less"
(dnf updateinfo info
由于https://bugzilla.redhat.com/show_bug.cgi?id=1405191,我无法使用整顿方法)
我的别名可以运行,但是命令运行大约需要10秒钟,并且由于bash在配置文件来源时会解析并验证所有别名,因此创建新的shell会导致10秒钟的挂起。真烦人
有什么方法可以使bash不尝试解析和验证别名-还是仅此一种?