Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 win-bash 来让脚本在 mac 和 windows 上运行,但 shopt 似乎丢失了。我正在尝试运行
shopt -s expand_aliases
有没有办法在 win-bash 中做到这一点?
win-bash 没有等价的 expand_aliases;因此,当 shell 不是交互式的时,不能使用别名。
您可以使用函数,例如
function name { command $* }
代替
alias name=command