码迷,mamicode.com
首页 > 其他好文 > 详细

gnuradio 打包脚本

时间:2017-11-27 12:43:50      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:start   ***   input   ini   star   int   打包   span   install   

#!/bin/sh

echo "cd build"
cd build
echo "rm -rf **"
rm -rf **
echo "cmake ../"
cmake ../
echo "make"
make 
echo "sudo make intall"
sudo make install
echo "ldconfig"
sudo ldconfig
echo "cd .."
cd ..
echo "ls"
ls
echo "build finish ! ***^_^***"

echo "if input char [Y/others] ,start gnuradio ,others no deal!"
read -p "input is [Y/others] :" var
echo "your input is : [${var}]"
if [ "$var" = Y ];then
    gnuradio-companion
    echo "---->satrt gnuradio"
else
    echo "---->no command!"
fi
echo "**^_^**"

 

gnuradio 打包脚本

标签:start   ***   input   ini   star   int   打包   span   install   

原文地址:http://www.cnblogs.com/yssrf-possible/p/7903502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!