openvms

What is inotify for OpenVMS?

What is inotify: inotify is a Linux kernel subsystem that acts to extend filesystems to notice changes to the filesystem, and report those changes to applications. for OpenVMS? ...

Updating .class file in a jar throws exception

I'm trying to port a wikimedia plugin to run on OpenVMS and needed to alter a class. I'm trying to update the .class file in the jar using jar uf jar-file .class-file, however when I do this I get the following: java.util.zip.ZipException: duplicate entry: META-INF/LICENSE.txt at java.util.zip.ZipOutputStream.putNextEntry(ZipOut...

Is there a Perl module that produces VMS like error messages?

VMS style command line user interface messages have standard format. For example: $ PRINT SOMEFILE.DAT %PRINT-E-OPENIN, error opening DKA2:[MYDIR]SOMEFILE.DAT; as input -RMS-E-FNF, file not found Component name: PRINT, RMS. Severity level: Success, Information, Warning, Error, and Fatal. Message identifier: OPENIN, FNF. Message text...

What is Linux for VMS DCL "ON ERROR"?

Using VMS DCL command scripts one can catch errors by using the on error command: $ on error then goto MyErrorHandler $ directory samiam.txt $ delete x.txt $ exit $MyErrorHandler: $ print "Something." How does one do this in Linuxland? In the example an error with directory or delete will cause control to go to MyErrorHandler. ...