Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
.\" $XConsortium: dtconvertvf.1xo /main/2 1995/07/17 15:40:35 drk $
.TH dtconvertvf 4 "23 Nov 1994"
.\" CDE Common Source Format, Version 1.0.0
.\" *************************************************************************
.\" ** (c) Copyright 1993, 1994 Hewlett-Packard Company
.\" ** (c) Copyright 1993, 1994 International Business Machines Corp.
.\" ** (c) Copyright 1993, 1994 Sun Microsystems, Inc.
.\" ** (c) Copyright 1993, 1994 Novell, Inc.
.\" *************************************************************************
.SH NAME
dtconvertvf \- convert VUE 3.0 action/filetype files to DT syntax
.SH SYNOPSIS
.yS
dtconvertvf
.yE
.SH DESCRIPTION
The
.B dtconvertvf
utility is a filter script for converting VUE 3.0 action and filetype
databases to the new CDE 1.0 datatypes syntax.
If the input is a VUE 3.0
filetype file (*.vf) then its output will be converted to a CDE 1.0 datatypes
file.
It is up to the user to name the output file accordingly.
To be
recognized by CDE 1.0 it must have the \fB.dt\fP suffix.
.SH EXAMPLE
To convert a single action/filetype file to CDE 1.0 syntax:
sp 1
.B dtconvertvf < file.vf > file.dt
.sp 1
To convert all action/filetype files in current directory to CDE 1.0 syntax:
.sp 1
for vffile in *.vf; do
.br
.B dtfile=${vffile%.vf}.dt
.B dtconvertvf < $vffile > $dtfile
.br
done