Recent content by jimbo_carruth

  1. J

    How do you open a text file that has a different file extension in perl?

    I have a text file from an program but the extension is .pch and the file type is Entrust Support File. Is there any way to open this file without first re-saving the file with a .txt extension? CODE: $punch = "file.pch"; open(FILE,$punch);
  2. J

    How do you open a text file that has a different file extension in perl?

    I have a text file from an program but the extension is .pch and the file type is Entrust Support File. Is there any way to open this file without first re-saving the file with a .txt extension? CODE: $punch = "file.pch"; open(FILE,$punch);
  3. J

    How can I make a simple Perl program work?

    I tried a simple Hello world Program, and a black screen comes up for a fraction of a second but then automatically closes. Source code: #!/usr/sbin/perl -w print("Hello world!"); I feel like I have Perl installed correctly... How do I run a program using the command prompt window?
  4. J

    How can I make a simple Perl program work?

    I tried a simple Hello world Program, and a black screen comes up for a fraction of a second but then automatically closes. Source code: #!/usr/sbin/perl -w print("Hello world!"); I feel like I have Perl installed correctly... How do I run a program using the command prompt window?
  5. J

    How can I make a simple Perl program work?

    I tried a simple Hello world Program, and a black screen comes up for a fraction of a second but then automatically closes. Source code: #!/usr/sbin/perl -w print("Hello world!"); I feel like I have Perl installed correctly... How do I run a program using the command prompt window?
  6. J

    How can I make a simple Perl program work?

    I tried a simple Hello world Program, and a black screen comes up for a fraction of a second but then automatically closes. Source code: #!/usr/sbin/perl -w print("Hello world!"); I feel like I have Perl installed correctly... How do I run a program using the command prompt window?
Back
Top