免费注册 查看新帖 |

Chinaunix

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

循环后加&就并发执行了吗? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-05-18 13:10 |只看该作者 |倒序浏览
看测试脚本
  1. [echfan@echfan-linux ~]$ cat test.sh
  2. #!/bin/bash
  3. for (( i=1;i<=5;i++ ));do
  4. echo "`date` This is >>$i" >> test.log
  5. sleep 5;
  6. echo "`date` End >>$i">>test.log
  7. done &
复制代码
执行时间是短了
  1. [echfan@echfan-linux ~]$ time bash test.sh

  2. real    0m0.017s
  3. user    0m0.003s
  4. sys     0m0.012s
复制代码
但是从输出看还是顺序执行的,在后台运行也要25秒。
  1. [echfan@echfan-linux ~]$ time bash test.sh

  2. real    0m0.017s
  3. user    0m0.003s
  4. sys     0m0.012s
  5. [echfan@echfan-linux ~]$ cat test.log
  6. Wed May 18 00:33:01 EDT 2011 This is >>1
  7. Wed May 18 00:33:06 EDT 2011 End >>1
  8. Wed May 18 00:33:06 EDT 2011 This is >>2
  9. Wed May 18 00:33:12 EDT 2011 End >>2
  10. Wed May 18 00:33:12 EDT 2011 This is >>3
  11. Wed May 18 00:33:17 EDT 2011 End >>3
  12. Wed May 18 00:33:17 EDT 2011 This is >>4
  13. Wed May 18 00:33:22 EDT 2011 End >>4
  14. Wed May 18 00:33:22 EDT 2011 This is >>5
  15. Wed May 18 00:33:27 EDT 2011 End >>5
复制代码
难道是我对并发执行的理解有误,如果让程序更短时间完成,怎么做呢?

论坛徽章:
0
2 [报告]
发表于 2011-05-18 13:34 |只看该作者
不可能是并发的,既然是循环,就是头尾相连的,前一个没有执行完,后面就不会执行
我觉得。。

论坛徽章:
0
3 [报告]
发表于 2011-05-18 13:34 |只看该作者
用c或者升级硬件

论坛徽章:
27
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:24:09CU大牛徽章
日期:2013-09-18 15:24:20CU大牛徽章
日期:2013-09-18 15:24:25CU大牛徽章
日期:2013-09-18 15:24:31CU大牛徽章
日期:2013-09-18 15:24:36CU大牛徽章
日期:2013-09-18 15:24:41CU大牛徽章
日期:2013-09-18 15:24:48CU大牛徽章
日期:2013-09-18 15:24:52处女座
日期:2013-09-27 17:45:43
4 [报告]
发表于 2011-05-18 13:46 |只看该作者
你的代码有问题,只是把for循环弄到后台执行了,其实还是顺序执行
应该是这样:
  1. [root@localhost ~]# cat test.sh
  2. #!/bin/bash

  3. for (( i=1;i<=5;i++ ));do
  4. sh test_per.sh $i >> test.log&

  5. done
复制代码
  1. [root@localhost ~]# cat test_per.sh
  2. echo "`date` This is >>$1" >> test.log
  3. sleep 5;
  4. echo "`date` End >>$1">>test.log
复制代码
结果:
  1. [root@localhost ~]# cat test.log
  2. 2011年 05月 18日 星期三 13:43:50 CST This is >>1
  3. 2011年 05月 18日 星期三 13:43:50 CST This is >>3
  4. 2011年 05月 18日 星期三 13:43:50 CST This is >>4
  5. 2011年 05月 18日 星期三 13:43:50 CST This is >>2
  6. 2011年 05月 18日 星期三 13:43:50 CST This is >>5
  7. 2011年 05月 18日 星期三 13:43:55 CST End >>1
  8. 2011年 05月 18日 星期三 13:43:55 CST End >>3
  9. 2011年 05月 18日 星期三 13:43:55 CST End >>4
  10. 2011年 05月 18日 星期三 13:43:55 CST End >>2
  11. 2011年 05月 18日 星期三 13:43:55 CST End >>5
复制代码

论坛徽章:
0
5 [报告]
发表于 2011-05-18 14:17 |只看该作者
本帖最后由 xiaopan3322 于 2011-05-18 14:18 编辑

关执行时间什么事。。。一点关系都没有,执行时间只能说明你把脚本丢到后台去的时间。。。
按你的写法,真正的运行时间肯定至少需要25s啊,看下面:
  1. [14:14:39-Bob@hzling20:~/test]-(1069)No.69->$ cat aa
  2. #!/bin/bash
  3. for (( i=1;i<=5;i++ ));do
  4.     echo "`date` This is >>$i" >> test.log && sleep 5 && echo "`date` End >>$i" >> test.log
  5. done &
  6. wait
  7. cat test.log
  8. [14:14:11-Bob@hzling20:~/test]-(1070)No.68->$ time ./aa  
  9. Wed May 18 14:14:13 HKT 2011 This is >>1
  10. Wed May 18 14:14:18 HKT 2011 End >>1
  11. Wed May 18 14:14:18 HKT 2011 This is >>2
  12. Wed May 18 14:14:23 HKT 2011 End >>2
  13. Wed May 18 14:14:24 HKT 2011 This is >>3
  14. Wed May 18 14:14:29 HKT 2011 End >>3
  15. Wed May 18 14:14:29 HKT 2011 This is >>4
  16. Wed May 18 14:14:34 HKT 2011 End >>4
  17. Wed May 18 14:14:34 HKT 2011 This is >>5
  18. Wed May 18 14:14:39 HKT 2011 End >>5

  19. real    0m25.073s
  20. user    0m0.004s
  21. sys     0m0.019s
复制代码
你想并发执行,无非就是想得到5s这个时间,可以这么写(注意看执行顺序和后面的运行时间):
  1. [14:16:52-Bob@hzling20:~/test]-(1073)No.73->$ cat aa
  2. #!/bin/bash
  3. for (( i=1;i<=5;i++ ));do
  4.     echo "`date` This is >>$i" >> test.log && sleep 5 && echo "`date` End >>$i" >> test.log &
  5. done
  6. wait
  7. cat test.log
  8. [14:16:57-Bob@hzling20:~/test]-(1074)No.74->$ time ./aa  
  9. Wed May 18 14:16:59 HKT 2011 This is >>1
  10. Wed May 18 14:16:59 HKT 2011 This is >>3
  11. Wed May 18 14:16:59 HKT 2011 This is >>2
  12. Wed May 18 14:16:59 HKT 2011 This is >>4
  13. Wed May 18 14:16:59 HKT 2011 This is >>5
  14. Wed May 18 14:17:04 HKT 2011 End >>1
  15. Wed May 18 14:17:04 HKT 2011 End >>3
  16. Wed May 18 14:17:04 HKT 2011 End >>2
  17. Wed May 18 14:17:04 HKT 2011 End >>4
  18. Wed May 18 14:17:04 HKT 2011 End >>5

  19. real    0m5.063s
  20. user    0m0.006s
  21. sys     0m0.072s
复制代码

论坛徽章:
0
6 [报告]
发表于 2011-05-18 14:46 |只看该作者
回复 4# yifangyou


    我确定见过这种在for后加 & 的写法,仿佛是不久前在shell版里。今天想起来。。。

论坛徽章:
0
7 [报告]
发表于 2011-05-18 15:35 |只看该作者
回复  yifangyou


    我确定见过这种在for后加 & 的写法,仿佛是不久前在shell版里。今天想起来。。。 ...
饭碗儿 发表于 2011-05-18 14:46



    他没有说你没见过,也没有说没有这种用法,他只是说你在这里不能这么用,你这么用是不能达到你所要求的结果的……
    明白?别曲解人家的意思,呵呵!

论坛徽章:
0
8 [报告]
发表于 2011-05-18 15:37 |只看该作者
相当于 “fork” 但是 无需处理返回值 和 进程表
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP