alias with parameters

淺唱寂寞╮ 提交于 2019-12-04 10:05:41

问题


If there is any possibility to use the parameters in zsh aliases? Something like this:

 alias ssh_nokia="ssh root@<ip_parameter>"

Usage:

 ssh_nokia 192.168.1.2

回答1:


In your particular case edit ~/.ssh/config (See Dave's answer below), or use:

alias ssh_nokia='ssh -l root'

Generally

ssh_nokia() {
    ssh root@"$@"
}

is equivalent to alias (will produce ssh root@1stparam 2ndparam 3rdparam …).




回答2:


I would use up ~/.ssh/config to create an alias for a particular connection, like so:

Host=anyoldname
Hostname=[hostname or ip address]
User=root

Then you can:

$ ssh anyoldname

More info:

$ man ssh_config


来源:https://stackoverflow.com/questions/2904677/alias-with-parameters

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!