[BACK]Return to file2c.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / file2c

File: [local] / src / usr.bin / file2c / Attic / file2c.1 (download)

Revision 1.10, Thu May 31 19:20:10 2007 UTC (16 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.9: +2 -2 lines

convert to new .Dd format;

.\" $OpenBSD: file2c.1,v 1.10 2007/05/31 19:20:10 jmc Exp $
.\"----------------------------------------------------------------------------
.\" "THE BEER-WARE LICENSE" (Revision 42):
.\" <phk@freebsd.org> wrote this file.  As long as you retain this notice, you
.\" can do whatever you want with this file. If we meet some day, and you think
.\" this stuff is worth it, you can buy me a beer in return.  Poul-Henning Kamp
.\" ---------------------------------------------------------------------------
.\"
.\"
.Dd $Mdocdate: May 31 2007 $
.Dt FILE2C 1
.Os
.Sh NAME
.Nm file2c
.Nd convert file to c-source
.Sh SYNOPSIS
.Nm file2c
.Op Ar string
.Op Ar string
.Sh DESCRIPTION
The
.Nm
utility reads a file from the standard input and writes it to the standard
output, converting each
byte to its decimal representation on the fly.
.Pp
If the first
.Ar string
is present, it is printed before the data.
If the second
.Ar string
is present, it is printed after the data.
.Pp
This program is used to embed binary or other files into C source files,
for instance as a
.Li char[] .
.Sh EXAMPLES
The command:
.Bd -literal -offset indent
$ date | file2c 'const char date[] = {' ',0};'
.Ed
.Pp
will produce:
.Bd -literal -offset indent
const char date[] = {
83,97,116,32,74,97,110,32,50,56,32,49,54,58,50,56,58,48,53,
32,80,83,84,32,49,57,57,53,10
,0};
.Ed
.Sh SEE ALSO
.Xr hexdump 1 ,
.Xr od 1