免费注册 查看新帖 |

Chinaunix

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

$() 和 `` 有什么区别? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-21 00:26 |只看该作者 |倒序浏览
  1. 下面是三个测试结果:

  2. bash$ echo '.' | sed -e 's/\./\\&/g'
  3. \.


  4. bash$ `echo '.' | sed -e 's/\./\\&/g'`
  5. -bash: &: command not found


  6. bash$ $(echo '.' | sed -e 's/\./\\&/g')
  7. -bash: \.: command not found


  8. bash$
复制代码

论坛徽章:
0
2 [报告]
发表于 2010-08-21 00:29 |只看该作者
bash$ bash --version
GNU bash, version 4.1.7(2)-release (i486-slackware-linux-gnu)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.


bash$ sed --version
GNU sed version 4.2.1
Copyright (C) 2009 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE,
to the extent permitted by law.

GNU sed home page: <http://www.gnu.org/software/sed/>.
General help using GNU software: <http://www.gnu.org/gethelp/>.
E-mail bug reports to: <bug-gnu-utils@gnu.org>.
Be sure to include the word ``sed'' somewhere in the ``Subject:'' field.

论坛徽章:
0
3 [报告]
发表于 2010-08-21 00:29 |只看该作者
回复 1# slackware12


    执行命令是一样的,不过 $()看起来好看,比如在嵌套的时候$($())比````清晰

论坛徽章:
0
4 [报告]
发表于 2010-08-21 00:29 |只看该作者
你的结果我解释不了,但是我知道他们用法的不同:
$()有些shell不支持这种写法,另外··这种用法在多重嵌套的时候需要转义,很麻烦。

论坛徽章:
33
ChinaUnix元老
日期:2015-02-02 08:55:39CU十四周年纪念徽章
日期:2019-08-20 08:30:3720周年集字徽章-周	
日期:2020-10-28 14:13:3020周年集字徽章-20	
日期:2020-10-28 14:04:3019周年集字徽章-CU
日期:2019-09-08 23:26:2519周年集字徽章-19
日期:2019-08-27 13:31:262016科比退役纪念章
日期:2022-04-24 14:33:24
5 [报告]
发表于 2010-08-21 00:30 |只看该作者
打开ABS,看看第287页。

Advanced Bash-Scripting Guide 3.9.1 中文版.pdf
http://bbs.chinaunix.net/thread-1610033-1-1.html

论坛徽章:
0
6 [报告]
发表于 2010-08-21 00:31 |只看该作者
  1. 这样看,是不是会清楚些呢:

  2. root@suntao-linux:~# cat a
  3. `echo '.' | sed -e 's/\./\\&/g'`
  4. root@suntao-linux:~# cat b
  5. $(echo '.' | sed -e 's/\./\\&/g')
  6. root@suntao-linux:~# bash -x a
  7. ++ echo .
  8. ++ sed -e 's/\./\&/g'
  9. + '&'
  10. a: line 1: &:找不到命令
  11. root@suntao-linux:~# bash -x b
  12. ++ echo .
  13. ++ sed -e 's/\./\\&/g'
  14. + '\.'
  15. b: line 1: \.:找不到命令
复制代码

论坛徽章:
0
7 [报告]
发表于 2010-08-21 00:31 |只看该作者
回复 1# slackware12


    LZ你这个不是``和$()的问题,是你在shell命令行下用``或$(),把你命令输出又当命令执行,肯定 command not found ..

论坛徽章:
0
8 [报告]
发表于 2010-08-21 00:34 |只看该作者
回复 7# 好看的附件


    楼主其实是想知道两种用法为什么报错信息不一样

论坛徽章:
0
9 [报告]
发表于 2010-08-21 00:37 |只看该作者
回复 8# bbgg1983


    还是你理解需求的能力强。。看来我有待加强

论坛徽章:
0
10 [报告]
发表于 2010-08-21 01:20 |只看该作者
回复 5# Shell_HAT

多谢你提供的资料,
        `` 不能阻止shell的解析.
        $() 能阻止shell的解析.
(不知道我这种理解是否正确?)

以下是我的验证过程1:
  1. #include <stdio.h>
  2. #include <stdlib.h>

  3. int main(int argc, char *argv[])
  4. {
  5.         for (int i = 0; i < argc; ++i)
  6.                 fprintf(stderr, "%d:\t\"%s\"\n", i, argv[i]);

  7.         return EXIT_SUCCESS;
  8. }

  9. $ gcc -std=c99 -o main main.c

  10. bash$ `./main '\\&'`
  11. 0:        "./main"
  12. 1:        "\&"



  13. bash$ $(./main '\\&')
  14. 0:        "./main"
  15. 1:        "\\&"
复制代码
以下是我的验证过程2:
  1. bash$ `echo '\\'`
  2. -bash: \: command not found


  3. bash$ $(echo '\\')
  4. -bash: \\: command not found
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP