Ask a Question related to UNIX Programming, Design and Development.

  1. #1

    Default Re: execv()


    "Sam" <sam@sam.com> wrote in message
    news:MZjNa.48264$nu3.41538@news.primus.ca...
    > I'm wodering how to send email without system(). Can't figure out the way
    > passing
    > char *msgbody to /bin/mail in execv() in a linux box. any way to do it or
    > have to use other command. My boss thinks system() is no good, btw.
    Get a copy of any good book on UNIX programming. Read the section on
    using pipes in conjunction with fork/exec. You can probably get away with
    using 'popen'.

    Comments like "system() is no good" are meaningless. Without citing a
    specific problem or type of problem, he could mean that 'system()' is no
    good for frying eggs.

    DS


    David Schwartz Guest

  2. Similar Questions and Discussions

    1. execv() terminates a program
      I have a program that uses threads (Linux, pthread 0.10). One thread asks to another one, called "Forker", to execute an application, given by a...
  3. #2

    Default Re: execv()

    "David Schwartz" <davids@webmaster.com> wrote:
    > Comments like "system() is no good" are meaningless.
    He might be concerned about potential security problems. system()
    invokes the shell.

    RFM
    --
    To reply, translate domain from l33+ 2p33|< to alpha.
    4=a 0=o 3=e +=t
    Fritz M Guest

  4. #3

    Default Re: execv()

    On Tue, 8 Jul 2003 15:33:48 +0000 (UTC),
    Fritz M <news@m4s0n3r.n3+> wrote:

    >"David Schwartz" <davids@webmaster.com> wrote:
    >
    >> Comments like "system() is no good" are meaningless.
    >
    >He might be concerned about potential security problems. system()
    >invokes the shell.
    >
    So he should have explained that. Most of us have lost the ability to
    mind read long time ago.


    Villy
    Villy Kruse Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139