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

  1. #1

    Default tty settings

    Hello perl people....

    I am wanting to know if there is a way to disable users from breaking out
    of a perl script, specifically CNTRL C , D? Hopefully it is just a one
    liner b/c I would also like to use this in KSH scripts. I will look in
    my learning perl book as well!

    thank you!
    Derek B. Smith
    OhioHealth IT
    UNIX / TSM / EDM Teams


    DBSMITH@OhioHealth.com Guest

  2. Similar Questions and Discussions

    1. #28793 [Asn->Csd]: php.ini settings should be able to read other php.ini settings
      ID: 28793 Updated by: andrei@php.net Reported By: bero at arklinux dot org -Status: Assigned +Status: ...
    2. need help for pda settings....
      hi guys... need your help do you know or there any sites that has tutorials for flash to produce pda short movies and there settings... i want to...
    3. Settings wont stay changed in Settings manager
      I keep trying to change the settings for my flash player but they never stay changed. It just keeps going back to the default settings. What do i...
    4. mms.cfg settings for 8.0?
      In our deployment of Flash Player 7, we pushed a mms.cfg file with the line AutoUpdateDisable=1 which would disable the constant check for updates....
    5. OSR 5.0.7 & DNS Settings
      Where (and maybe how) would I set the ISP DNS Settings on OSR 5.0.7? I've got my routing set up correct for IP, but I can't figure out the DNS...
  3. #2

    Default Re: tty settings


    On Feb 2, 2004, at 3:21 PM, [email]DBSMITH@OhioHealth.com[/email] wrote:
    [..]
    > I am wanting to know if there is a way to disable users
    > from breaking out of a perl script, specifically CNTRL C , D?
    [..]

    You might want to peek at say

    perldoc perlipc

    and work on a SIG handler for the signal that is
    sent to the perl code that will deal with that.
    But there is the problem with the sigkill, which
    is a non-maskable interrupt.

    cf
    man stty


    ciao
    drieux

    ---

    Drieux 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