免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: qfmeal
打印 上一主题 下一主题

mkdir 函数有-p 参数吗? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2009-11-04 19:10 |只看该作者
原帖由 churchmice 于 2009-11-4 14:37 发表
那你可以考虑下使用多个参数的system
system("ls -l")
这样的写法是会在后台调用/bin/sh的
但是
system("ls","-l")
这样的写法可以绕过/bin/sh直接调用/bin/ls


No. 你给的例子两者没有任何区别。

perldoc -f system
   system LIST
   system PROGRAM LIST
           Does exactly the same thing as "exec LIST", except that a
           fork is done first, and the parent process waits for the
           child process to complete.  Note that argument processing
           varies depending on the number of arguments.  If there is
           more than one argument in LIST, or if LIST is an array with
           more than one value, starts the program given by the first
           element of the list with arguments given by the rest of the
           list.  If there is only one scalar argument, the argument is
           checked for shell metacharacters, and if there are any, the
           entire argument is passed to the system’s command shell for
           parsing (this is "/bin/sh -c" on Unix platforms, but varies
           on other platforms).  If there are no shell metacharacters
                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
           in the argument, it is split into words and passed directly
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
           to "execvp", which is more efficient.
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

论坛徽章:
20
CU大牛徽章
日期:2013-04-17 11:48:26羊年新春福章
日期:2015-03-10 22:39:202015年中国系统架构师大会
日期:2015-06-29 16:11:282015亚冠之平阳省
日期:2015-07-31 09:19:042015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-09-30 06:20:002015亚冠之柏太阳神
日期:2015-10-19 20:29:5915-16赛季CBA联赛之天津
日期:2016-11-29 14:03:4315-16赛季CBA联赛之北控
日期:2016-12-24 20:51:492015年辞旧岁徽章
日期:2015-03-03 16:54:15双鱼座
日期:2015-01-12 20:58:532014年中国系统架构师大会
日期:2014-10-14 15:59:00
12 [报告]
发表于 2009-11-04 23:47 |只看该作者
用system命令来调用

论坛徽章:
0
13 [报告]
发表于 2009-11-05 10:00 |只看该作者
还是有区别的,看下面的一段代码
bash-3.2# cat system.pl
  1. #!/usr/bin/perl
  2. use strict;
  3. use Data::Dumper;

  4. system("ls -ld ../*");
  5. system("ls","-ld","../*");
复制代码

bash-3.2#
bash-3.2# perl system.pl
drwxr-xr-x   2 root       sys           8192 Nov  5 09:54 ../perl
../* not found
bash-3.2#

论坛徽章:
0
14 [报告]
发表于 2009-11-05 10:07 |只看该作者
原帖由 Perl_Er 于 2009-11-5 10:00 发表
还是有区别的,看下面的一段代码
bash-3.2# cat system.pl
#!/usr/bin/perl
use strict;
use Data:umper;

system("ls -ld ../*";
system("ls","-ld","../*";
bash-3.2#



元字符
If there are no shell metacharacters in the argument ...

论坛徽章:
0
15 [报告]
发表于 2009-11-05 10:11 |只看该作者
恩,若没有metacharacter基本上是一样的.

论坛徽章:
0
16 [报告]
发表于 2009-11-05 10:16 |只看该作者
perl 语言编程 (chm版)里面有这样的话。

system PATHNAME LIST
system LIST
这个函数为你执行任何系统里的程序并返回该程序的退出状态——而不是它的输出。要捕获命令行上的输出,你应该用反勾号或者 qx//。system 函数的运转非常类似 exec,只不过 system 先做一个 fork,然后在 exec 之后等待执行的程序的结束。也就是说它为你运行这个程序并且在它完成之后返回,而 exec 用新的程序代替你运行的程序,所以如果替换成功的话它从不返回。

参数的处理因参数的数目的不同而不同,就象在 exec 里描述的那样,包括判断是否调用 shell 以及你是否用声明另外一个 PATHNAME 的方法使用了该函数其他的名称。

论坛徽章:
0
17 [报告]
发表于 2009-11-05 10:19 |只看该作者
exec PATHNAME LIST
exec LIST
exec 函数结束当前程序的运行并且执行一条外部命令并且决不返回!!!如果你希望在该命令退出之后恢复控制,那么你应该使用 system。exec 函数只有在该命令不存在以及该命令是直接执行而没有通过你的系统的命令行 shell(下面讨论)执行的时候才失败并返回假。

如果只有一个标量参数,那么 exec 检查该参数是否 shell 的元字符。如果找到元字符,那么它代表的所有参数都传递给系统的标准命令行解释器(在 Unix 里是 /bin/sh)。如果没有这样的元字符,那么该参数被分裂成单词然后直接执行,出于效率考虑,这样做绕开了所有 shell 处理的过荷。而且如果该程序没有退出,这样也给你更多错误恢复的控制。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP