什么是shell中msgsnd函数的等价物

时间:2015-06-01 11:25:07

标签: c++ c linux bash shell

我有以下C源代码,使用msgsnd()

将消息发送到其他进程
struct mymsgst mymsg;
int msgid;
if((msgid = msgget((key_t)1234, 0)) > 0 )
{
    mymsg.msg_type = 15;
    msgsnd(msgid, (void *)&mymsg, MSG_SIZE, 0);
}

我想在shell linux中开发相同的源代码。

shell中上述c代码的等价物是什么?

0 个答案:

没有答案