Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cf(1) [centos man page]

cf(1)																	     cf(1)

   NAME
       cf - Confluence compiler

   SYNOPSIS
	   cf [options] [file] [arguments]

   DESCRIPTION
       Confluence  is  a functional programming language for reactive system design, including digital logic systems (ASIC, FPGA) and control ori-
       ented hard real-time software.

       The Confluence compiler (cf) translates a Confluence description into Verilog and VHDL (for digital logic synthesis), C (for simulation and
       software targets), and NuSMV (for formal verification, via model checking).

   OPTIONS
       -h OR -help Prints this information then exits.

       -b filename OR -base_env filename

	      Sets the base environment for the compilation.
		     Overrides the CF_ENV

	      environment variable.
		     If CF_ENV not defined and -base_env option not set, the base environment defaults to /usr/share/confluence/base.cf.

       -e integer OR -error_limit integer

	      Sets the maximum number of reported errors.
		     A negative number reports all errors.

       -c OR -compile_only Parses and compiles, but does not evaluate a program.

       -o name

	      Sets the output file name.
		     Default is out.fnf.

       -test Run the built in unit tests.

   ENVIRONMENT VARIABLES
       CF_ENV A filename that specifies the base environment (commonly base.cf).

       CF_LIB The directory location of the Confluence standard library (optional).

   VERSION
       0.10.6

   AUTHOR
       Tom Hawkins (tomahawkins@yahoo.com)

   SEE ALSO
       http://www.confluent.org/

   COPYRIGHT
       Copyright (C) 2003-2005 Tom Hawkins

								  31 January 2010							     cf(1)

Check Out this Related Man Page

Pod::Simple::Wiki::Confluence(3pm)			User Contributed Perl Documentation			Pod::Simple::Wiki::Confluence(3pm)

NAME
Pod::Simple::Wiki::Confluence - A class for creating Pod to Confluence wiki filters. SYNOPSIS
This module isn't used directly. Instead it is called via "Pod::Simple::Wiki": #!/usr/bin/perl -w use strict; use Pod::Simple::Wiki; my $parser = Pod::Simple::Wiki->new('confluence'); ... Convert Pod to a Confluence wiki format using the installed "pod2wiki" utility: pod2wiki --style confluence file.pod > file.wiki DESCRIPTION
The "Pod::Simple::Wiki::Confluence" module is used for converting Pod text to Wiki text. Pod (Plain Old Documentation) is a simple markup language used for writing Perl documentation. For an introduction to Confluence see: http://www.atlassian.com/software/confluence/ This module isn't generally invoked directly. Instead it is called via "Pod::Simple::Wiki". See the Pod::Simple::Wiki and pod2wiki documentation for more information. METHODS
Pod::Simple::Wiki::Confluence inherits all of the methods of "Pod::Simple" and "Pod::Simple::Wiki". See Pod::Simple and Pod::Simple::Wiki for more details. SEE ALSO
This module also installs a "pod2wiki" command line utility. See "pod2wiki --help" for details. ACKNOWLEDGEMENTS
Thanks to David Bartle, Andrew Hobbs and Jim Renwick for patches. DISCLAIMER OF WARRANTY
Please refer to the DISCLAIMER OF WARRANTY in Pod::Simple::Wiki. AUTHORS
John McNamara jmcnamara@cpan.org COPYRIGHT
X MMIII-MMVIII, John McNamara. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. perl v5.10.1 2009-08-26 Pod::Simple::Wiki::Confluence(3pm)
Man Page

6 More Discussions You Might Find Interesting

1. HP-UX

User rights

I wan to create a user e.g. Tom. whenever a file is created by user Tom or FTP is done using user as Tom, the rights on the file should be 777 (by default). how can I achieve this. Please help. Its very urgent. (1 Reply)
Discussion started by: sharmavr
1 Replies

2. Programming

no autogen.sh?

I tried to make a little test library so see whether if I can get autotools working for a library. I somewhat did, it compiles, but some targets, such as dist, fail. The test library is here: libtest (at an uploading service) I run autoreconf -i, then ./configure, and when I type make... (0 Replies)
Discussion started by: rayne
0 Replies

3. UNIX for Dummies Questions & Answers

Help me in finding logic

I am searching for some logic which will help me to introduce quick action for the errors. We have application server and we need to check the bunch of information for every 10 minutes and alert thru mail. I wrote a script in which i am tailing last 1000 lines and counting one exception then... (21 Replies)
Discussion started by: senthilkumar_ak
21 Replies

4. Shell Programming and Scripting

Join

Hi, need some help in joining please, FILE 1: ------- 1|05/20/2009| 2|04/21/2009| 2|03/21/2009| FILE 2: ------- 1|Michel|Hawkins|05/10/2009| 1|Michel|Hawkins|03/10/2007| 2|Krish|Lander|09/10/2005| FILE 3: ------- 1|M|32|03/22/2009| 2|M|42|04/22/2009| 2|M|41|03/10/2008| I want to... (7 Replies)
Discussion started by: greenworld
7 Replies

5. Programming

C- static initialization of structures

Situation: I have an array of structures: struct my_struct_type { char tags_sn; char group_c; char is_err_c; }; struct my_struct_type stuff = { "abcd", 'A', 'E', "efgh", 'B', 'E', "ijkl", 'C', 'E' NULL, '\0', '\0' ... (14 Replies)
Discussion started by: garysk
14 Replies

6. UNIX for Dummies Questions & Answers

Delete line using ed

Hi, I have below txt file Tom is good girl Tom is samrt Tom is intellectual I want to delete first line from the txt file, tried below but it is now working ed -s test.txt << $'1d/nw' I surfed net, but have no clue. (2 Replies)
Discussion started by: stew
2 Replies