创建别名
alias word='command'
调用 word
将运行 command
。提供给别名的任何参数都只是附加到别名的目标:
alias myAlias='some command --with --options'
myAlias foo bar baz
然后 shell 将执行:
some command --with --options foo bar baz
要在同一别名中包含多个命令,可以将它们用 &&
串在一起。例如:
alias print_things='echo "foo" && echo "bar" && echo "baz"'