免费注册 查看新帖 |

Chinaunix

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

[文本处理] [求助]关于进程替换的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-05-21 21:36 |只看该作者 |倒序浏览
在网站上看到了下面这段代码,输出为HI THERE , 不理解,哪位大神能解释一下,尤其是 这个符号 “=>”
f() {
    cat "$1" >"$x"
}

x=>(tr '[:lower:]' '[:upper:]') f <(echo 'hi there')

论坛徽章:
7
荣誉版主
日期:2011-11-23 16:44:17子鼠
日期:2014-07-24 15:38:07狮子座
日期:2014-07-24 11:00:54巨蟹座
日期:2014-07-21 19:03:10双子座
日期:2014-05-22 12:00:09卯兔
日期:2014-05-08 19:43:17卯兔
日期:2014-08-22 13:39:09
2 [报告]
发表于 2014-05-21 21:41 |只看该作者
=是单独的,>()这个是一组

论坛徽章:
18
辰龙
日期:2014-05-21 21:01:4115-16赛季CBA联赛之深圳
日期:2016-12-23 13:51:3815-16赛季CBA联赛之北控
日期:2016-11-28 18:26:3815-16赛季CBA联赛之佛山
日期:2016-11-03 11:18:5815-16赛季CBA联赛之辽宁
日期:2016-07-10 16:09:4115-16赛季CBA联赛之江苏
日期:2016-02-20 23:09:202015亚冠之塔什干棉农
日期:2015-08-17 19:49:492015年亚洲杯之日本
日期:2015-04-30 01:24:342015年亚洲杯之约旦
日期:2015-04-01 00:37:182015年亚洲杯之沙特阿拉伯
日期:2015-03-02 15:55:40处女座
日期:2014-05-25 10:34:0020周年集字徽章-年
日期:2023-04-23 11:17:52
3 [报告]
发表于 2014-05-22 03:46 |只看该作者
执行的效果应该和echo 'hi there'|tr '[:lower:]' '[:upper:]'一样。
把楼主的代码改成:
  1. f() {
  2.      cat "$1" >"$x"
  3. echo "\$1=$1"
  4. echo "\$x=$x"
  5. }

  6. x=>(tr '[:lower:]' '[:upper:]') f <(echo 'hi there')
复制代码
然后执行结果为:
  1. $1=/dev/fd/63
  2. $x=/dev/fd/62
  3. HI THERE
复制代码
也就是把文件描述符63的内容重定向到文件描述符62去了。

论坛徽章:
0
4 [报告]
发表于 2014-05-22 14:45 |只看该作者
谢谢两位的解答,我还是没有理解,主要是变量x。
关于这段代码有段说明

Scope


If a process substitution is expanded as an argument to a function, expanded to an environment variable during calling of a function, or expanded to any assignment within a function, the process substitution will be "held open" for use by any command within the function or its callees, until the function in which it was set returns. If the same variable is set again within a callee, unless the new variable is local, the previous process substitution is closed and will be unavailable to the caller when the callee returns.

In essence, process substitutions expanded to variables within functions remain open until the function in which the process substitution occured returns - even when assigned to locals that were set by a function's caller. Dynamic scope doesn't protect them from closing.




This example demonstrates how process substitutions can be made to resemble "passable" objects. This results in converting the output of f's argument to uppercase.

f() {
    cat "$1" >"$x"
}

x=>(tr '[:lower:]' '[:upper:]') f <(echo 'hi there')
See the above section on scope


来自 http://wiki.bash-hackers.org/syntax/expansion/proc_subst

关于作用范围的那段没有看懂


您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP