Sponsored Content
Full Discussion: Get the id with specify flag
Top Forums UNIX for Dummies Questions & Answers Get the id with specify flag Post 302924620 by RudiC on Tuesday 11th of November 2014 05:52:54 AM
Old 11-11-2014
Well, try to adapt my code snippet...
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

the flag -c in sh command

I need your help please. In a production system, i've seen many running process as follow: sh -c ./pathname/shellname what exactly the flag option -c is used for? ive tried to look at the man page, but it doesnt say much. ill appreciate yor help. Thanks (4 Replies)
Discussion started by: alexcol
4 Replies

2. Shell Programming and Scripting

find and size flag

Hello everyone, I would like to filter and search for files in my curr dir where the blocks used by those files are over a certain number (i.e. 30), when I try this command find . -name "c*" -size +30 -exec ls -ls {} \; I get a list of files, the first column is the block size, right? ... (1 Reply)
Discussion started by: gio001
1 Replies

3. AIX

Checking for flag in a subscript?

I want to incorportae a subscript in a job script which is used for loading purposes. What i require is that before a job runs it should check for a flag ,if flag is not present then create it and the loading should start. Once loading finishes it should delete the flag. So if any other load... (1 Reply)
Discussion started by: bathla
1 Replies

4. Shell Programming and Scripting

checking for a flag in a subscript?

I want to incorportae a subscript in a job script which is used for loading purposes. What i require is that before a job runs it should check for a flag ,if flag is not present then create it and the loading should start. Once loading finishes it should delete the flag. So if any other load... (2 Replies)
Discussion started by: bathla
2 Replies

5. Red Hat

-ansi flag support for g++

I have been compiling a cpp program using following command: g++ -c -ansi a.cpp with g++ version 4.1.2. I want to know the significance of the -ansi flag and which other higher g++ version supports this flag by default Dhiraj (1 Reply)
Discussion started by: dhiraj kurhade
1 Replies

6. Shell Programming and Scripting

Date Time of FLAG

Hi, I am first sorry to ask for that, but I am in trouble so I hope you will be agreed to help me on this. I am solaris (ksh). I have a lots of file but I only need to get the date and time of the flag files. Here is the "ls -lrt" view : ls -lrt | grep Flag_Saturne_R*Return ... (3 Replies)
Discussion started by: Aswex
3 Replies

7. AIX

du flag -x

Hi, I would like to know if there's any option to use with the du command so that I can list only the files/directories on the current filesystem... I usually use du -gs *But I'd like to see only the directories in the filesystem I am on, and not the mount point directory of other fss... ... (6 Replies)
Discussion started by: Casey
6 Replies

8. Shell Programming and Scripting

Add the flag

#!/bin/bash while : do ./abc.sh PB sleep 60 ./abc.sh RA sleep 60 ./abc.sh GS sleep 68400 done Instead of making the script sleep for sometime, it doesn't work all the time as time may shift over a period. How to make a script wake up every 30 seconds and check the current time, if... (2 Replies)
Discussion started by: sandy1028
2 Replies

9. AIX

Flag issue

Hi all, We dont have access to aix source code and i have a doubt. The flag SC_NO_RESERVE, is it got to do anything with the failover? If the flag is set the paths are going to failed state. If flag is not set everything comes up fine after failover. Thanks in advance for helping ... (2 Replies)
Discussion started by: gnakul
2 Replies

10. UNIX for Dummies Questions & Answers

'h' flag in du

Hey, all! Why is the "human readable" flag changing the behavior of du? And while I'm at it, can you make du only look at files, not directories. I often find myself wanting to find the largest file(s) in a dir or vol. Using 'find' itself, it seems you have to at least be able to guess the size of... (2 Replies)
Discussion started by: sudon't
2 Replies
docb_transform(3erl)					     Erlang Module Definition					      docb_transform(3erl)

NAME
docb_transform - Transform XML to HTML DESCRIPTION
docb_transform contains functions for transforming XML documentation source code to HTML. EXPORTS
file(File) -> ok | {error, Reason} file(File, Options) -> ok | {error, Reason} Types File = string() Options = [Opt] Opt -- see below Transforms XML documentation source code to HTML. File is a documentation source file, given with or without the .xml extension as Name.xml or Name . If File contains XML code according to a basic DTD ( chapter , erlref , ...), the resulting HTML file is named Name.html . If File contains XML code according to a compound DTD ( application or part ), several files are created: * A cover page for the application with two frames, Name_frame.html . * The contents of the left frame and a front page, Name.html and Name_first.html . * A bibliography and a glossary, Name_cite.html and Name_term.html . * In the case of an application DTD an index is created, Name.kwc and Name_index.html . * One HTML file for each file included from File . * Also, if there exists a fascicules.xml file where the value of the entry attribute for File is "yes" , the cover page is copied to index.html . OPTIONS
{html_mod, Module}, Module=atom() : A callback module can be used for specifying HTML snippets that should be included in the generated HTML files, see below. {outdir, Dir}, Dir=string() : Destination for generated files. Default is current working directory. {number, Number}, Number=int() : First chapter number when transforming a chapter file. Default is 1. {ptype, unix|windows} : For path elements, the specified file path should be presented. silent : Silent - no warnings, only error information is printed. {top, Index}, Index=string() : Specifies the value of "Top" in the left frame of a front page, which normally should be some kind of top index file for the documenta- tion. {vsn, Vsn}, Vsn=string() : Application version number. Overrides a version number defined in the XML document. Visible in the left frame and on the front page. {term_defs, File}, File=string() : Use the global glossary definitions in File , which should contain a list of tuples {Id, Name, Definition, Owner} . See the section <term>, <termdef> - Glossary in the User's Guide. {cite_defs, File}, File=string() : Use the global bibliography definitions in File , which should contain a list of tuples {Id, Title, Info, Owner} . See the section <cite>, <citedef> - Bibliography in the User's Guide. CALLBACK MODULE
A html_mod callback module can include the functions specified below. Note that there is no check that the resulting HTML code is valid. All functions are optional. EXPORTS
Module:head() -> string() Defines a HTML snippet to be included in the head of a document, after the <HEAD> start tag and <TITLE> tag: <HTML> <HEAD> <TITLE>...</TITLE> - snippet is included here - ... </HEAD> </HTML> Module:top() -> string() Defines a HTML snippet to be included at the top of a document, after the <BODY> start tag. Module:bottom() -> string() Defines a HTML snippet to be included at the bottom of a document, before the </BODY> end tag. Module:seealso(SeeAlso) -> Href Types SeeAlso = Href = string() When referring to another part of the document, or another document, the XML tag <seealso> is used: <seealso marker="File#Marker">...text...</seealso> . By default, this is translated to <A HREF="File.html#Marker>...text...</A> . This function makes it possible to specify an alternative translation Href of the marker attribute value SeeAlso . For example, in OTP this is used to resolve cross references between applications. Ericsson AB docbuilder 0.9.8.9 docb_transform(3erl)
All times are GMT -4. The time now is 11:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy