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

实现批量linux格式化硬盘和挂载硬盘脚本分享

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

linux自动重启tomcat脚本分享

Linux上安装和卸载rpm软件包的方法

linux安装php扩展脚本分享

shell对比文件内容脚本分享

后台实时分流文件的shell脚本

Shell实现多级菜单系统安装维护脚本实例分享

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

自动杀掉占用较多CPU资源的Shell脚本

精品推荐
分类导航