multiple processes running contemporarily!

Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default multiple processes running contemporarily!


    How could i achive that?


    --
    Posted via [url]http://dbforums.com[/url]
    dominant Guest

  2. Similar Questions and Discussions

    1. running processes from a service
      hi everyone i am trying to write a program that runs a process when invoked (a program that reads data from a server and writes the output as XML...
    2. running background (daemon) processes in Windows
      In Unix I can start a 'deamon' (background) process like: ruby -e 'fork do system("something") end' Or by putting the fork directly into my...
    3. Outputting the status while the processes are running
      Hi all : I need to run a process for thousands of (known number) of combinations of the settings needed for the process to run. I have the...
    4. Running processes unniced as a normal user.
      Hello Mike! At Thursday 24 July 2003 22:50 Mike Mestnik wrote: You could setup sudo to allow this and only this type of invocation: renice 0...
    5. Running Java UDFs and associated db2fmp processes...
      Paul Reddin wrote: Which version of JDK are you using? Sounds like the JVM is trapping recursively.
  3. #2

    Default Re: multiple processes running contemporarily!

    In article <3340442.1062950342@dbforums.com>,
    dominant <member32241@dbforums.com> wrote:
    > How could i achive that?
    1. "Contemporarily" isn't a word. Do you mean "contemporaneously"?

    2. What is your Perl question?
    --
    Kevin Michael Vail | Dogbert: That's circular reasoning.
    [email]kevin@vaildc.net[/email] | Dilbert: I prefer to think of it as no loose ends.
    [url]http://www.vaildc.net/kevin/[/url]
    Kevin Michael Vail Guest

  4. #3

    Default Re: multiple processes running contemporarily!

    dominant <member32241@dbforums.com> wrote:
    >
    > How could i achive that?

    perldoc -f fork
    perldoc -f exec


    --
    Tad McClellan SGML consulting
    [email]tadmc@augustmail.com[/email] Perl programming
    Fort Worth, Texas
    Tad McClellan Guest

  5. #4

    Default Re: multiple processes running contemporarily!


    :) simultaneously!



    I solved my problem by putting the start word before the command (within
    the system())


    --
    Posted via [url]http://dbforums.com[/url]
    dominant 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