Vancasper 发表于 2004-10-6 22:29:38

sh -c可不可以这样用?

有一个perl文件,正常运行需要两个参数。
在Console下直接运行sh -c ./free_align.pl aattagcaatagcat ccagttatc(free_align.l是那个perl文件,aattagcaatagcat ccagttatc两个字符串是参数)好像参数没有起作用。
但在Console下直接./free_align.pl aattagcaatagcat ccagttatc或者perl ./free_alignpl aattagcaatagcat ccagttatc都是可以的。
请教一下,是不是不应该这么用?

MichaelBibby 发表于 2004-10-7 16:26:21

可以看看bash 的man文档

-c string
               If the -c option is present,thencommandsarereadfrom
               string.   Ifthereare arguments after the string, they are
               assigned to the positional parameters, starting with $0.

-c string
如果有 -c 选项,那么命令将从 string 中读取。如果 string 后面有参数 (argument),它们将用于给位置参数 (positional parameter,以 $0 起始) 赋值。

中文manpage(CMPP)可以在这里查看和下载:
http://cmpp.linuxforum.net
页: [1]
查看完整版本: sh -c可不可以这样用?