我想运行带有内联注释的命令,例如
sleep 1 # first sync call
sleep 1 # second sync call
# etc
但我不能将它传递给exec
Ruby
fork{ exec "sleep 1 # first async call" }
fork{ exec "sleep 1 # second async call" }
它跟踪警告。
那么我怎样才能将一些评论传递给系统调用exec
。
我需要它来记录
PS:作为一个变体:fork{ exec "sh -c 'sleep 1' # first async" }