码迷,mamicode.com
首页 > 系统相关 > 详细

Shell编程小结

时间:2019-11-22 16:41:41      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:ubuntu   input   空格替换   style   变量   declare   span   生成   逗号   

       为了方便测试,需要在Ubuntu中使用Shell调用Tensorflow生成的可执行文件。为此,专门编写了一个脚本。在这个脚本制作过程中,查找了一系列命令。

现记录一下,以备后查!

功能:

       对final.txt逐条读取,存入ac_data_input.txt,

       用空格替换逗号分隔内容,

       执行程序:ta_ac

declare -i lines  #定义一个变量
lines=0

echo $lines

input_txt=ac_data_input.txt
total_txt=final.txt


cat "final.txt"|while read line
do 
rm -rf $input_txt  #删除一个文件
touch $input_txt  #新建一个文件
echo $line>$input_txt
sed s/,/ g ac_data_input.txt > ac_data_input1.txt
rm -rf $input_txt
mv ac_data_input1.txt $input_txt
./ta_ac  
done   

 

       

       

 

Shell编程小结

标签:ubuntu   input   空格替换   style   变量   declare   span   生成   逗号   

原文地址:https://www.cnblogs.com/jimchen1218/p/11912353.html

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