vtune自动化安装脚本
#!/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 "accept\r"
expect "*selection*";send "3\r";
expect "*choice*"; send "2\r";
send "/root/EVAL_L_VT__VGXB-RDCJPN8X.lic"
expect "*Enter*"; send "rn";
expect "*selection:*"; send "1\r";
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
shell实现FizzBuzzWhizz问题示例(拉勾网面试题)
试题:https://www.jinshuju.net/f/EGQL3D语言:Shell(Bash)运行方式:shnum-game.sh数字1数字2数字3如果不想使用传递数字的方式,可以修改num-game.sh第9行,将NUM=$*改为NUM='数
Shell中处理包含空格的文件名实例
今天在处理文件时遇到个问题,当文件名包含空格时,for循环就出问题了。例如,我在当前文件夹下建立3个文件名包含空格的文件:keakons-MacBook-Pro:testk
bash批量重命名、批量更改后辍的方法
用特定的格式重命名当前目录的图像文件,脚本如下:#!/bin/bash#Filename:rename_photo.shset-xcount=1forimgin*.jpg*.pngdonew=image-$count.${img##*.}mv"$img""$new"2/dev/nullif[$?-eq0