Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

icebox(1) [debian man page]

ICEBOX(1)							   ZeroC Ice 3.4							 ICEBOX(1)

NAME
icebox - application server for Ice services SYNOPSIS
icebox --Ice.Config=config DESCRIPTION
IceBox is a meta-application that may be configured to instantiate services implemented as shared libraries. A single IceBox instance may start as many services as required. Full documentation of this tool is available online at http://www.zeroc.com/doc/Ice-3.4.2/manual/IceBox.html Alternatively you may find the same information in the non-free package zeroc-ice-manual. COPYRIGHT
This man page is Copyright (C) 2008-2010 Francisco Moya. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. The text of GPLv3 is also available in /usr/share/common-licenses/GPL-3 SEE ALSO
Please, for further information refer to Distributed Programming with Ice by Michi Henning, Mark Spruiell, et al. available as a PDF file in the non-free package zeroc-ice-manual or browse it online at http://www.zeroc.com/doc/Ice-3.4.2/manual/ Francisco Moya 2008-05-16 ICEBOX(1)

Check Out this Related Man Page

FALSE(1)							   User Commands							  FALSE(1)

NAME
false - do nothing, unsuccessfully SYNOPSIS
false [ignored command line arguments] false OPTION DESCRIPTION
Exit with a status code indicating failure. --help display this help and exit --version output version information and exit NOTE: your shell may have its own version of false, which usually supersedes the version described here. Please refer to your shell's doc- umentation for details about the options it supports. AUTHOR
Written by Jim Meyering. REPORTING BUGS
Report false bugs to bug-coreutils@gnu.org GNU coreutils home page: <http://www.gnu.org/software/coreutils/> General help using GNU software: <http://www.gnu.org/gethelp/> COPYRIGHT
Copyright (C) 2009 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. SEE ALSO
The full documentation for false is maintained as a Texinfo manual. If the info and false programs are properly installed at your site, the command info coreutils 'false invocation' should give you access to the complete manual. GNU coreutils 7.1 July 2010 FALSE(1)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Add text to file at a certain line

I am trying to add a line of text just before the last line in a file. For example, if the last line of a file is "exit 0", I need to add a line of text just before that. Any ideas how I might do that? Thanks (5 Replies)
Discussion started by: TheCrunge
5 Replies

2. Shell Programming and Scripting

want unique data

Hi All, I have a question again, In the code below in want to display data that is unique, there are many directories in which i am going and parsing a .su file and getting a string out, if i do ls $i | grep .su | $AWK -F"_" '{print $1} | uniq inside the for loop it will not work. What do... (1 Reply)
Discussion started by: asirohi
1 Replies

3. Shell Programming and Scripting

What some ideas with sort and get unique data

Hi all, I am writing a script where i can parse through the directory and get common string in two directories i get. The command below SUN_PLATFORM=`$FIND $STREAM_PATH . -depth -name ShareableEntities | $AWK -F"/" '{if($10 ~ /sun5/) print $0}'` gives the following output:- ... (1 Reply)
Discussion started by: asirohi
1 Replies

4. Shell Programming and Scripting

Need to run the script by argument passing

Hi All, I have a question regarding running this script by passing an argument, for example ./ShellParse.sh sun, how do i do that? So i want when i pass argument sun, it shouild execute things inside the for loop. I want to support some other platforms too, so there are more for loops to... (3 Replies)
Discussion started by: asirohi
3 Replies

5. Shell Programming and Scripting

Problem with the script, help me debug

Hi, When i run the script ./script.sh sun, this give me no output, it should give me the list of file. If i run the script without the argument it should send me echo inside usage(). What is the problem? please help -Adsi #!/bin/sh ROOT_PATH=/net/icebox/vol/local_images/spins... (2 Replies)
Discussion started by: asirohi
2 Replies

6. Shell Programming and Scripting

Help needed to stick on variable data to an output

Hi all, I need help now to stick the value inside $RHAT_PRODUCT and display that in every line in the output. What changes in the code can i do. Please suggest Thanks Adsi #!/bin/sh ECHO=/bin/echo FIND=/bin/find AWK=/bin/awk LS=/bin/ls GREP=/bin/grep ... (1 Reply)
Discussion started by: asirohi
1 Replies

7. Shell Programming and Scripting

How to append using sed

Hello all, I want to use sed to append a variable stored in $i, how do i do that? $i contains a path to a directory and i want to append it before the result i get from awk statement, before affecting awk results. rite now out put i get from code below is:- The path is:... (2 Replies)
Discussion started by: asirohi
2 Replies