多个别名用于不同的命令

时间:2017-10-27 06:14:32

标签: bash unix redhat

我正在尝试创建一个bash脚本,该脚本将ssh到远程网络设备,根据模型运行命令,然后保存输出。

此时我的期望文件包含以下内容:

#!/user/bin/expect

set pw xxxxxxx
set timeout 5

spawn ssh [lindex $argv 0]

expect "TACACS Password:"
    send "$pw\r"
interact

我的.sh文件中包含的变量允许我登录到单独的" host"基于模型类型的文件。它包含:

shopt -s expand_aliases

fpath="path where scripts are located"
opath="MAC_Results.log"

for i in $( cat $fpath/3560hosts )
do
expect script.exp $i >> "$opath"
done

当我运行.sh时,一切都按预期运行。我的问题在于我不知道如何调用我的别名。我已经编辑了.bashrc并且已经获得了它。 .bashrc包含以下内容:

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

# User specific aliases and functions

alias loc3560="term length 0; show mac address-table | ex Gi|CPU|Po; exit"
alias locx="term length 0; show mac address-table | ex Gi[1|2]/1|CPU|Vl99|Po1|dynamic|system; exit"

我还在.sh别名中添加了别名。但似乎无法获得正确的语法。我尝试了以下变化,但没有成功......

for i in $( cat $fpath/3560hosts )
do
expect script.exp $i $loc3560 >> "$opath"
done

for i in $( cat $fpath/3560hosts )
do
expect script.exp $i >> "$opath";
$loc3560
done

对于将这些内容发送给他们的任何建议表示感谢。

1 个答案:

答案 0 :(得分:0)

不幸的是,我无法弄清楚如何在我的主.sh脚本中调用我的函数或别名。虽然我找到了通过我期望的文件实现我想要的方法。下面列出的代码,它就像一个魅力。我的21个文件的子目录现已减少到3个!

set loc3560 "show mac address-table | ex Gi|CPU|Po
exit"
set locx "show mac address-table | ex Gi1/1|Gi2/1|CPU|Vl99|Po1|dynamic|system
exit"
set loc4500 "show mac address-table | ex 1/3|1/5|Port-channel|Switch|1/1|1/2|dynamic|system
exit"
set loc888 "show mac-address-table | i FastEthernet
exit"
set loces2 "show mac address-table | i Fa0
exit"

spawn ssh [lindex $argv 0]

expect "TACACS Password:"
    send "$pw\r"

expect  "#"
    send "$ver\r"

expect {
    "C3560-IPSERVICESK9-M" {
    send "$loc3560\r"
    exp_continue
}
    "CAT3K_CAA-UNIVERSALK9" {
    send "$locx\r"
    exp_continue
}
    "C3750E-UNIVERSALK9-M" {
    send "$locx\r"
    exp_continue
}
    "CISCO888-SEC-K9" {
    send "$loc888\r"
    exp_continue
}
    "bootflash:/cat4500e" {
    send "$loc4500\r"
    exp_continue
}
    "SM-ES2-24" {
    send "$loces2\r"
    exp_continue
}
}
interact

expect "#"
    send "exit\r"
end

然后,我可以通过以下方式调用我的脚本并将其输出到我的目录中的日志文件中:

./script.sh >> Results.log