Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rxqueue(1) [debian man page]

rxqueue(1)						      General Commands Manual							rxqueue(1)

Name
       rxqueue - The Regina Rexx Interpreter external queue utility

Syntax
       rxqueue [ queue ] [ /fifo | /lifo | /clear | /pull | /queued ] [ text ]

Description
       rxqueue is utility that provides access to the Regian Rexx external queue daemon (rxstack) via stdin and stdout

Options
       queue  The name of the queue to use. By default this is SESSION.

       /fifo  Stacks the text onto the queue in first in, first out order.

       /lifo  Stacks the text onto the queue in last in, first out order.

       /clear Removes all lines currently stacked in the queue.

       /pull  Extracts the next line from the queue to stdout and removes it from the queue.

       /queued
	      Returns the number of lines stacked on the queue to stdout

Environment
       rxqueue uses the following environment variables if set.

       RXDEBUG
	      Enables debugging. Same as specifying -D option.

       RXSTACK
	      The port number on which rxqueue listens. By default this is 5757.

       RXQUEUE
	      The name of the queue to be used if not specified by the client using rxqueue.  By default this is SESSION.

Copyright
       The Regina Rexx interpreter is distributed under the GNU Library General Public License, see the file `COPYING-LIB' in the source code dis-
       tribution.

Author
       Anders Christensen, University of Trondheim, Norway <anders@pvv.unit.no>.

Maintainer
       Changes to Regina since 0.07a, Mark Hessling <mark (at) rexx.org> with significant assistance from Florian Grosse-Coosmann.

See Also
       rxstack(1)

       There are several good reference books on Rexx. The most famous is "The Rexx Language" by Mike Cowlishaw.  Visit http://www.rexxla.org (The
       Rexx Language Association) for any Rexx related information.

																	rxqueue(1)

Check Out this Related Man Page

rxstack(1)						      General Commands Manual							rxstack(1)

Name
       rxstack - The Regina Rexx Interpreter stack daemon

Syntax
       rxstack [ -D ] -d | -k

Description
       rxstack is a daemon that provides access to Regian Rexx external queues directly to Regina Rexx programs or indirectly (via rxqueue) to any
       other program via stdin and stdout Without any options, rxstack runs in the foreground.

Options
       -D     Sets debugging on

       -d     Starts rxstack as a daemon

       -k     Kills the running rxstack process.

Environment
       rxstack uses the following environment variables if set.

       RXDEBUG
	      Enables debugging. Same as specifying -D option.

       RXSTACK
	      The port number on which rxstack listens. By default this is 5757.

       RXQUEUE
	      The name of the queue to be used if not specified by the client using rxstack.  By default this is SESSION.

Copyright
       The Regina Rexx interpreter is distributed under the GNU Library General Public License, see the file `COPYING-LIB' in the source code dis-
       tribution.

Author
       Anders Christensen, University of Trondheim, Norway <anders@pvv.unit.no>.

Maintainer
       Changes to Regina since 0.07a, Mark Hessling <mark (at) rexx.org> with significant assistance from Florian Grosse-Coosmann.

See Also
       rxqueue(1)

       There are several good reference books on Rexx. The most famous is "The Rexx Language" by Mike Cowlishaw.  Visit http://www.rexxla.org (The
       Rexx Language Association) for any Rexx related information.

																	rxstack(1)
Man Page

4 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Unix Rexx

I am initiating a process from a mainframe using FTP. I'd like to use REXX statements in a CLIST to perform a capture of data from a UNIX system. Is there a "native" REXX language on UNIX. I've seen references for uni-REXX, OOREXX, S/REXX. Thanks, oldschool (1 Reply)
Discussion started by: oldschool
1 Replies

2. AIX

Equivalent of Rexx Interpret?

Hi All, Does anyone familiar with “Rexx interpret” know of a script equivalent? For those that don't know “Rexx interpret”, here's how a script might look. variable='echo Hello World!' interpret $variable Output is Hello World! because $variable was interpreted. Thanks, Lou (6 Replies)
Discussion started by: LouPelagalli
6 Replies

3. Solaris

Regina Rexx 3.6 installation

1) Install below required pkg SUNWbtool, SUNWlibm, SUNWarc, SUNWhea and SUNWsprot SUNWsprox 2) Install GCC 3) Download Regina-REXX-3.6.tar Pkg for regina 4) tar -xvf Regina-REXX-3.6.tar 5) cd Regina-REXX-3.6 ./configure --build=sparc --enable-32bit --with-staticfunctions... (1 Reply)
Discussion started by: mahendra170
1 Replies

4. Shell Programming and Scripting

Highlighting duplicate string on a line

Hi all I have a grep written to pull out values; below (in the code snip-it) is an example of the output. What I'm struggling to do, and looking for assistance on, is identifying the lines that have duplicate strings. For example 74859915K74859915K in the below is 74859915K repeated twice but... (8 Replies)
Discussion started by: brighty
8 Replies