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

shell逐行读取替换

时间:2021-05-03 12:39:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:done   bin   读取   sed   $1   awk   int   while   bash   

#!/bin/bash

while read line
do
echo $line
txt=`echo $line |awk -F‘ ‘ ‘{print $1}‘`
id=`echo $line|awk -F‘ ‘ ‘{print $3}‘`
echo $txt
echo $id
sed "s/ws22041.com/${txt}/g" 2.txt > 4.txt
sed "s/5429/${id}/g" 4.txt >> 5.txt

# sleep 5
done < 3.txt

shell逐行读取替换

标签:done   bin   读取   sed   $1   awk   int   while   bash   

原文地址:https://www.cnblogs.com/yanzi2020/p/14724061.html

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