Execute shell script from a perl script

Ask a Question related to Perl / CGI, Design and Development.

  1. #1

    Default Execute shell script from a perl script

    Hi,

    How can I executed a Unix shell script from a Perl script.
    The shell script is a dump of a oracle table to a file. The perl script is
    for the reformat of this output file.

    Thanks

    Karel


    kderaedt Guest

  2. Similar Questions and Discussions

    1. variable to a shell-script
      hello, i've got really problems transporting a form-variable (called searchstring) to a shellscript :-/ because of a blank in the searchstring...
    2. Shell script question
      Hi, I am trying to run one of my installation shell script using the command- bash resetapp.sh & it gives me the error as- 'bash: not...
    3. shell script help!!
      hi all, i have some commands on hand, but i don't know how i can stick it up with (ksh) shell script... can anyone help? 1) use find to list...
    4. [OT] How do I execute script in different shell?
      Hi, Sorry to post an off topic question, but it's a quick one, hope you can help. Say I have a shell script shell.sh: $!/bin/sh echo $SHELL
    5. How do i include a shell script
      How do i include a shell script in perl. I have to use some shell scripts in a perl script. I know I can write it in perl, but would like avoid...
  3. #2

    Default Re: Execute shell script from a perl script

    J. Gleixner wrote:
    > kderaedt wrote:
    >
    >> Hi,
    >>
    >> How can I executed a Unix shell script from a Perl script.
    >> The shell script is a dump of a oracle table to a file. The perl
    >> script is
    >> for the reformat of this output file.
    >
    > perldoc -f system
    >
    Or if your perl script takes input from STDIN, and you modified your
    shell script to echo to STDOUT, no need to call system, it'd simply be:

    script.pl < script.sh > formatted.out

    J. Gleixner Guest

  4. #3

    Default Re: Execute shell script from a perl script

    J. Gleixner <glex_nospam@qwest.net> wrote:
    > Or if your perl script takes input from STDIN, and you modified your
    > shell script to echo to STDOUT, no need to call system, it'd simply be:
    >
    > script.pl < script.sh > formatted.out
    You mean:
    script.sh | script.pl > formatted.out


    --
    Glenn Jackman
    Glenn Jackman Guest

  5. #4

    Default Re: Execute shell script from a perl script

    "kderaedt" <kderaedt@hotmail.com> wrote in message news:<3efafb0e$0$1064$ba620e4c@reader1.news.skynet .be>...
    > Hi,
    >
    > How can I executed a Unix shell script from a Perl script.
    > The shell script is a dump of a oracle table to a file. The perl script is
    > for the reformat of this output file.
    >
    > Thanks
    >
    > Karel
    Hi Karel,
    you can try using a system, exec or backticks.

    Here is the documentation for those:
    [url]http://www.perldoc.com/perl5.6/pod/func/system.html[/url]
    [url]http://www.perldoc.com/perl5.6/pod/perlop.html#[/url]

    Hope that helps.

    Regards,
    -Andres Monroy-Hernandez
    Andres Monroy-Hernandez Guest

Posting Permissions

  • You may not post new threads
  • You may not 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