免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2202 | 回复: 12
打印 上一主题 下一主题

求助 for [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-03-26 18:14 |只看该作者 |倒序浏览
cat /tmp/channels
7#a#120.250000
8#a#128.250000
223#f#/home/plustv/Coral_Reef_Adventure_1080.wmv -loop 0 -ao sdl
902#r#tv:// -tv driver=v4l:width=640:height=480:device=/dev/video1


for input in `cat /tmp/channels `
     do
           id="$(echo $input |  cut -d'#' -f1)"
           type="$(echo $input |  cut -d'#' -f2)"
          freq="$(echo $input |  cut -d'#' -f3)"
           tv_type_snapshot $id $type $freq
      done

当处理以上黑体所示的时候,得不到预期的结果 freq=/home/plustv/Coral_Reef_Adventure_1080.wmv -loop 0 -ao sdl
有什么方法可以解决?
谢谢~!

论坛徽章:
0
2 [报告]
发表于 2009-03-26 18:20 |只看该作者
freq=`echo $input | awk -F "#" '{print $3}'`

论坛徽章:
0
3 [报告]
发表于 2009-03-26 18:33 |只看该作者

回复 #1 ypxns 的帖子

freq="$(echo $input | sed -r 's/.*#(.*)/\1/')"

[ 本帖最后由 飞鸿无痕 于 2009-3-26 18:36 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2009-03-26 18:34 |只看该作者
原帖由 ypxns 于 2009-3-26 18:14 发表
cat /tmp/channels
7#a#120.250000
8#a#128.250000
223#f#/home/plustv/Coral_Reef_Adventure_1080.wmv -loop 0 -ao sdl
902#r#tv:// -tv driver=v4l:width=640:height=480:device=/dev/video1


for  ...

要处理行的时候最好用read:
while read line
     do
           id="$(echo $input |  cut -d'#' -f1)"
           type="$(echo $input |  cut -d'#' -f2)"
          freq="$(echo $input |  cut -d'#' -f3)"
           tv_type_snapshot $id $type $freq
      done </tmp/channels

论坛徽章:
0
5 [报告]
发表于 2009-03-26 18:41 |只看该作者
sed 's/#/ /g' /tmp/channels >/tmp/tmpfile
while read id type freq
do
    tv_type_snapshot $id $type $freq
done</tmp/tmpfile

论坛徽章:
0
6 [报告]
发表于 2009-03-26 20:07 |只看该作者

回复 #5 ywlscpl 的帖子

这个方法很好。学习了。

论坛徽章:
0
7 [报告]
发表于 2009-03-26 20:14 |只看该作者

回复 #5 ywlscpl 的帖子

加管道是不是可以省了临时文件?

论坛徽章:
0
8 [报告]
发表于 2009-03-26 20:44 |只看该作者
应该可以

论坛徽章:
0
9 [报告]
发表于 2009-03-26 21:28 |只看该作者

回复 #7 haimming 的帖子

我光想着在done< 上弄,你提醒了我,发现自己有时候思维有定式

sed 's/#/ /g' /tmp/channels | while read id type freq
do
   tv_type_snapshot $id $type $freq
done

论坛徽章:
0
10 [报告]
发表于 2009-03-27 10:01 |只看该作者
原帖由 ywlscpl 于 2009-3-26 21:28 发表
我光想着在done< 上弄,你提醒了我,发现自己有时候思维有定式

sed 's/#/ /g' /tmp/channels | while read id type freq
do
   tv_type_snapshot $id $type $freq
done


  1. IFS="#"
  2. while read id type freq
  3. do
  4.    tv_type_snapshot $id $type $freq
  5. done
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP