Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by xjc539w

  1. xjc539w

    Location of sourced ksh script

    Thanks for the response, however lsof is not installed on the servers. Probably not an option here to download on to a production server.
  2. xjc539w

    Location of sourced ksh script

    Any thoughts on determining the location of a sourced script? I have a.sh in /usr/home/location1 that calls b.sh in /usr/home/location2. /usr/home/location1/a.sh echo $0 . /usr/home/location2/b.sh /usr/home/location2/b.sh echo $0 When you run this script the output is...
  3. xjc539w

    Arrays as parameters

    Any best pratices for accomplishing the following: a.plx is the main program, that wants a module to work on a pair of arrays and an associated hash. ( @a1, @a2, %a3 ) = b::work( @a1, @a2, %a3 ); over in b.pm, I have a sub work. I need to process the arrays and hash then return back to the main.
  4. xjc539w

    Is Actuate 7 Barcode enabled?

    Spoke to actuate yesterday and they said it is possible if the the fonts were purchased from a company like Carolina BarCode.
  5. xjc539w

    Is Actuate 7 Barcode enabled?

    Do you know if Actuate has the capability to print bar codes or OCR scan lines or some type of marking that a mailing machine could pick up to know that an extra stuffer sheet needs to be sent with the letter?
  6. xjc539w

    Password input

    Mike, Thanks for the reply, but I had tried with and without the @. I did attempt to execute with the system call as suggested. NO errors, but the input still echoed. thanks al
  7. xjc539w

    Password input

    Paul, Thanks, I tried that with this code: `@echo off`; print &quot;Password: &quot;; chomp ($pass1 = <STDIN>); `@echo on`; but received the following: 'off' is not recognized as an internal or external command, operable program or batch file. Password: Am I missing something?
  8. xjc539w

    Password input

    Aside from using the Term::ReadKey package, is there a recommended approach to accepting input as a password without echoing back the characters in a Windows (2000/XP) environment?
  9. xjc539w

    Use of SendMail on NT4

    The specifics: An NT workstation, with ActivePerl 5.6.* installed. The SendMail.pm manually installed to the Perl\lib folder The TestMail.plx being executed has been tailored to work in my host environment. use Env; use Sendmail; # # Create the object without any arguments, # i.e...
  10. xjc539w

    sendmail.pm - Send email ok but give server overload error

    Ron, The format of the recipient is as described below. I've extracted code that I am using that sends to a list of recipients retreived from a file. Hope this helps. # # We set the To Recipients. #$sm->To(&quot;Recipient <recipientid\@recipient.mail.domain>&quot;); # open(SQLLog, &quot;<...
  11. xjc539w

    Use of SendMail on NT4

    Probably a simple error, but it is baffling to me. I've successfully used this code (Thankyou) on other machines (XP & W2K), but as I try to execute from a NT4 box I receive the following: D:\perl\lib\Mail>perl -v This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered...

Part and Inventory Search

Back
Top