Sponsored Content
Operating Systems AIX Software For Server Environment Documentation Post 302666755 by bakunin on Thursday 5th of July 2012 06:00:41 AM
Old 07-05-2012
Yes - how about vi?

Seriously: without knowing any details it is hard to suggest anything.

Your question is like "i want to buy the best car - please advise": without knowing where you want to go with it (autobahn, offroad, racing track), how much cargo you have to transport (none, some trunks max, tons of it), where you want to go (in middle europe or the front line in Iraq), etc. this could be anything from a Ferrari, a Land Rover, an articulated lorry to a M-1 battle tank.

To paraphrase "Pill" Dr. McCoy: we are system administrators, not psychics. That makes us highly efficient information-processing devices. Put much in to get much out. Put little in and you get little out. Guess what you get when you put bullshit into this system.

I hope this helps (to enlighten you about our modus operandi).

bakunin
This User Gave Thanks to bakunin For This Post:
 

3 More Discussions You Might Find Interesting

1. Solaris

Unix software & documentation.

I need to install unix sun solaries software on my machine. But i don't have software & documentation to install on my system. Could you please send me the free software and documentation regarding unix sun solaries? Regards, rajesh. (1 Reply)
Discussion started by: pmrajesh21
1 Replies

2. Solaris

Give Solaris server documentation

If you have documents of preconfigured Solaris server with all tuned improvements.. This is all about how it is released, as first example. It must contain ready instructions to setup server from scratch in a case of global system crash mb some FS tunings (i.e. log fs, var fs) mb some ready... (1 Reply)
Discussion started by: Xcislav
1 Replies

3. Programming

good continuous integration and automatic documentation software for c++

Started using trac and svn and it is working nicely, but am looking for some other things to add: continuous integration, automatic documentation. What suggestions do you guys have for the most full featured easy to use software for this? Stuff I am looking for: continuous integration... (1 Reply)
Discussion started by: Eruditass
1 Replies
struct::queue(n)						Tcl Data Structures						  struct::queue(n)

__________________________________________________________________________________________________________________________________________________

NAME
struct::queue - Create and manipulate queue objects SYNOPSIS
package require Tcl 8.2 package require struct::queue ?1.4.1? queueName option ?arg arg ...? queueName clear queueName destroy queueName get ?count? queueName peek ?count? queueName put item ?item ...? queueName unget item queueName size _________________________________________________________________ DESCRIPTION
The ::struct namespace contains a commands for processing finite queues. It exports a single command, ::struct::queue. All functionality provided here can be reached through a subcommand of this command. Note: As of version 1.4.1 of this package a critcl based C implementation is available. This implementation however requires Tcl 8.4 to run. The ::struct::queue command creates a new queue object with an associated global Tcl command whose name is queueName. This command may be used to invoke various operations on the queue. It has the following general form: queueName option ?arg arg ...? Option and the args determine the exact behavior of the command. The following commands are possible for queue objects: queueName clear Remove all items from the queue. queueName destroy Destroy the queue, including its storage space and associated command. queueName get ?count? Return the front count items of the queue and remove them from the queue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are not enoughs items in the queue to fulfull the request, this command will throw an error. queueName peek ?count? Return the front count items of the queue, without removing them from the queue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are not enoughs items in the queue to fulfull the request, this command will throw an error. queueName put item ?item ...? Put the item or items specified into the queue. If more than one item is given, they will be added in the order they are listed. queueName unget item Put the item into the queue, at the front, i.e. before any other items already in the queue. This makes this operation the comple- ment to the method get. queueName size Return the number of items in the queue. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category struct :: queue of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
graph, list, matrix, pool, prioqueue, record, set, skiplist, stack, tree struct 1.4.1 struct::queue(n)
All times are GMT -4. The time now is 05:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy