手机
当前位置:查字典教程网 >脚本专栏 >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自动化安装脚本】相关文章:

Shell脚本自动删除指定大小以上的备份文件

mysql源码安装脚本分享

shell使用mysqld_multi自动做多实例从库脚本

智能监测自动重启Apache服务器的Shell脚本

linux安装php扩展脚本分享

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

Linux下实现SNMP一键安装的Shell脚本

shell实现自动备份mysql、整站数据的两个脚本分享

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

自动生成linux网卡配置脚本分享

精品推荐
分类导航