手机
当前位置:查字典教程网 >脚本专栏 >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实现多级菜单系统安装维护脚本实例分享

nginx日志切割脚本分享

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

备份网站内容的shell脚本代码

shell对比文件内容脚本分享

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

ssh expect自动登录的脚本代码

linux安装php扩展脚本分享

linux下自动备份MySQL数据并上传到FTP上的shell脚本

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

精品推荐
分类导航