Perl Application Migration From MPE To Unix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl Application Migration From MPE To Unix
# 1  
Old 03-29-2006
Perl Application Migration From MPE To Unix

Hi,

Iam working on migration of perl applicaion from MPE/ix OS to UNIX. Perl Application uses MPE::File Package which cannot be used in HPUX.

I have identified IO::File and Filehandle package as replacement.

Will the functionality of the MPE Package & Unix filehandle Package will match?

Please help me out

Thanks
Omkumar
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

UNIX to Linux Migration

We have certain number of scripts that run on AIX server using ksh. Now that we migrate these scripts to Linux servers. We need to know what are the changes that we have to perform in script to make it compatible to run on Linux. Say like in our Unix -AIX "print" command worked. But that did... (6 Replies)
Discussion started by: SIva81
6 Replies

2. HP-UX

C++ Code migration from HP Unix 11.11 to 11.31

i'm facing some problem to make my source code work in HP Unix 11.31 which works fine in HP Unix 11.11. Recently our unix server is upgraded to HP Unix 11.31, i was able to compile my source code successfully in 11.31 but i see some system call failure and socket failure. is there any steps to... (5 Replies)
Discussion started by: Madanxyz
5 Replies

3. Programming

[ critical ] Migration from Shellscript to Perl or Python ?

Hello all, I'm having some doubts about which language to choose to migrate some shell scripts that I have. All scripts work the same way: 1) access the database Pgsql / Mysql 2) HTTP request to extract data 3) Extract data fields through regular expressions 4) Parallel processing As an... (6 Replies)
Discussion started by: thales.pereira
6 Replies

4. Programming

Migration of application from libCstd.so.1 to libstlport.so.1

Hello, I want to migrate from application that was compiled with Sun 4.2 compiler with C++ standard library(libCstd.so.1) to STLport(libstlport.so.1) library. I am able to compile all the files on Solaris 10 with Sun 5.8 compiler but linking is failing with symbol referencing errors though... (0 Replies)
Discussion started by: shafi2all
0 Replies

5. UNIX for Dummies Questions & Answers

Unix file migration

Hi all, Is there a program that would make sense out of the data below; this is from MPAC unix system. I would like to get usable data that could be transferred into excel? Rich, (5 Replies)
Discussion started by: berkmillionare
5 Replies

6. HP-UX

Loco -mpe

Has anyone worked on LOCO? If yes can someone give me some details on that? Thanks & Regards, Indira (1 Reply)
Discussion started by: indira
1 Replies

7. HP-UX

How to use more than one MPE command STREAM with Unix command in a single shell?

Hello, I have problem in writing the shell script involving MPE command STREAM related to HP-UX and Unix command. Script is sh "nlshCMD 'STREAM <job name1>' | 'SHOWJOB' | grep $HPJOBNUM" sh "nlshCMD 'STREAM <job name2>' | 'SHOWJOB' | grep $HPJOBNUM" sh "nlshCMD 'STREAM <job name3>' |... (1 Reply)
Discussion started by: bosskr
1 Replies

8. Shell Programming and Scripting

How to use more than one MPE command STREAM with Unix command in a single shell?

Hello, I have problem in writing the shell script involving MPE command STREAM related to HP-UX and Unix command. Script is sh "nlshCMD 'STREAM <job name1>' | 'SHOWJOB' | grep $HPJOBNUM" sh "nlshCMD 'STREAM <job name2>' | 'SHOWJOB' | grep $HPJOBNUM" sh "nlshCMD 'STREAM <job name3>' |... (0 Replies)
Discussion started by: bosskr
0 Replies

9. UNIX for Dummies Questions & Answers

Migration to Unix

Hello, I work for a very small ISP who up until now has run a combination of Win2000 and NT4 servers for our services (mail, DNS, dial-up). Our equipment is showing it's age and we have been looking into changing into a Unix environment. Our biggest challenge right now is our dial-up... (1 Reply)
Discussion started by: Kukur
1 Replies
Login or Register to Ask a Question
File::Spec::Cygwin(3)					User Contributed Perl Documentation				     File::Spec::Cygwin(3)

NAME
File::Spec::Cygwin - methods for Cygwin file specs SYNOPSIS
require File::Spec::Cygwin; # Done internally by File::Spec if needed DESCRIPTION
See File::Spec and File::Spec::Unix. This package overrides the implementation of these methods, not the semantics. This module is still in beta. Cygwin-knowledgeable folks are invited to offer patches and suggestions. canonpath Any "" (backslashes) are converted to "/" (forward slashes), and then File::Spec::Unix canonpath() is called on the result. file_name_is_absolute True is returned if the file name begins with "drive_letter:", and if not, File::Spec::Unix file_name_is_absolute() is called. tmpdir (override) Returns a string representation of the first existing directory from the following list: $ENV{TMPDIR} /tmp $ENV{'TMP'} $ENV{'TEMP'} C:/temp Since Perl 5.8.0, if running under taint mode, and if the environment variables are tainted, they are not used. case_tolerant Override Unix. Cygwin case-tolerance depends on managed mount settings and as with MsWin32 on GetVolumeInformation() $ouFsFlags == FS_CASE_SENSITIVE, indicating the case significance when comparing file specifications. Default: 1 COPYRIGHT
Copyright (c) 2004,2007 by the Perl 5 Porters. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-01-16 File::Spec::Cygwin(3)