在 Proc 中§
有关方法命令,请参阅主要文档在上下文中
method command(Proc: --> List)
command 方法是一个访问器,用于访问包含在通过 spawn
、shell
或 run
执行 Proc 对象时传递的参数的列表。
在 Proc::Async 中§
有关方法命令,请参阅主要文档在上下文中
method command(Proc::Async: --> List)
从 v6.d 版本开始可用。
返回用于此 Proc::Async
对象的命令和参数
my := Proc::Async.new: 'cat', 'some', 'files';.command.say; # OUTPUT: «(cat some files)»