2

I've downloaded, with ftp, a file which contains too many .s for a OpenVMS system.

swing-layout-1^.0.jar 

How can I remove the extra dot?

GregL
  • 9,030
  • 2
  • 24
  • 35
michelemarcon
  • 621
  • 1
  • 7
  • 14

1 Answers1

2

I have solved it:

set process/parse_style=extended

Native OpenVMS uses the dots to delimit the file name, type and version numbers. The first dot in this case has '^' preceding it to indicate that it is just part of the name, is not the end of the name and start of the type (which is jar).

  • Name: swing-layout-1.0
  • Type: jar
  • Version: (not specified)

The parse_style=extended allows this to work with a file from another realm where the dot has no special meaning to the file system.

CW Holeman II
  • 421
  • 1
  • 8
  • 23
michelemarcon
  • 621
  • 1
  • 7
  • 14