alias update_my_gems="echo foo; echo bar"
或者,您可以在〜/ .zshrc文件中非常轻松地编写函数:
update_my_gems() { echo foo echo bar }
为了便于阅读,我个人会为任何半复杂的东西寻找功能.