手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >vtune自动安装脚本分享
vtune自动安装脚本分享
摘要:复制代码代码如下:#!/bin/bash#!/usr/bin/expect-f#!/usr/bin/envbashyuminstall-ye...

复制代码 代码如下:

#!/bin/bash

#!/usr/bin/expect -f

#!/usr/bin/env bash

yum install -y expect wget

cd /root

wget http://172.16.92.99/share/tar/vtune_amplifier_xe_2013_update15.tar.gz

wget http://172.16.92.99/share/tar/EVAL_L_VT__VGXB-RDCJPN8X.lic

tar -zxvf vtune_amplifier_xe_2013_update15.tar.gz

expect -c "spawn sh /root/vtune_amplifier_xe_2013_update15/install.sh;

set timeout 5; expect "*Enter*"; send "rn";

expect "*Enter*"; send "rn";

expect "*Enter*"; send "rn";

while {1} {

expect {

"*--More--*" {send "rn"}

"*accept*" {break}

}

}

expect "*accept*"

send "acceptr"

expect "*selection*";send "3r";

expect "*choice*"; send "2r";

send "/root/EVAL_L_VT__VGXB-RDCJPN8X.lic"

expect "*Enter*"; send "rn";

expect "*selection:*"; send "1r";

expect "*Enter*"; send "rn";

set timeout 25;

expect "*Enter*"; send "rn";

expect "*Enter*"; send "rn";

expect eof;"

rm -rf /root/*

source /opt/intel/vtune_amplifier_xe_2013/amplxe-vars.sh

【vtune自动安装脚本分享】相关文章:

win下调用putty执行命令脚本分享

linux下实现ftp自动备份shell脚本

从apnic提取ip信息脚本分享

linux中常用脚本和函数分享

linux自动清理日志脚本分享

shell监控脚本 准备工作分享

自动重启服务的shell脚本代码

linux服务器安全加固shell脚本代码

ssh expect自动登录的脚本代码

shell监控linux系统进程创建脚本分享

精品推荐
分类导航