Sponsored Content
Top Forums Shell Programming and Scripting New to shellscripting....need some help! Post 302172835 by TurboArkhan on Tuesday 4th of March 2008 09:10:53 PM
Old 03-04-2008
With this getopts, I am making some nice progress.... but is there a way to dereference $OPTIND? It is the index of the argument, as opposed to the argument...

as soon as I figure this out I believe it might work! Smilie
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

shellscripting question

I have been “commissioned” to write a shellscript to automate Oracle cold refeshes.. right now we perform about 20 refresh each 300gb in size which takes up our time. my goal is to write a shellscript which can be executed by a user on serverA to refresh any of the 7 databases on ServerA. I am... (4 Replies)
Discussion started by: jigarlakhani
4 Replies

2. Shell Programming and Scripting

Running SQLPLUS from Shellscripting ...

Hi guys, I am facing issues while triggering sqlplus with "/" option I can connect to database with USER ID and password. but, if i just specify "/" option since it is "externally identiifed user" it doesn't work Any suggestions? mail me @ Removed. Regards, Giri (2 Replies)
Discussion started by: chittari
2 Replies

3. Shell Programming and Scripting

New to shellscripting error: ./emailnotifications.sh: line 43: [: FH: integer expression expected

Hi , I'm a beginner in unix shell scripting need help in rectifying an error Source file :test.txt with Header ------ ----- Trailer ex: FH201010250030170000000000000000 abc def jke abr ded etf FE2 I was validating whether the header begin... (2 Replies)
Discussion started by: dudd9
2 Replies

4. Shell Programming and Scripting

csv file to excel file with shellscripting

Hi all, Please help me out How to write a shell script which converts abc.csv file into abc.xls example file abc.csv AP_RQ_ID,TXN_IER,AP_RS_RESP_CD,TXN_CNT,TOTAL_AMT 60000002,ACTIVATION,00,490,14657.52 60000002,ACTIVATION,08,1,100 This needs to be converted into excel format using a... (3 Replies)
Discussion started by: dudd9
3 Replies

5. Shell Programming and Scripting

Timeout in shellscripting

#!/bin/sh for ip in $(cat /root/Desktop/ftp.txt) do HOST=$ip USER='bob' PASS='bob' ftp -n $HOST <<EOF user bob bob EOF echo "$ip" done the Above code i want to use check and verify login works on multiple ftp servers on my network. However the ftp servers are dynamic in setup... (5 Replies)
Discussion started by: Noledge
5 Replies

6. Shell Programming and Scripting

shellscripting to edit xml file

I have an xml file where every line which has the word CDATA in it follows this pattern (line number) <word1><!]></>I need only these lines editing so that the end result is that (line number) <word1><!]></word1>so it copies the first bit to the end. Anyone know how I can do this I am... (10 Replies)
Discussion started by: legolad
10 Replies

7. Shell Programming and Scripting

small error in shellscripting -archival part

Hi All, I have run the below script but getting one small error. please help me to solve this. ERROR: tar: Error exit delayed from previous errors CODE: #! /bin/bash CEP=/home/user01/exercise/CEP ARCH=/home/user01/exercise/archive LOG=/home/user01/exercise/logs... (3 Replies)
Discussion started by: aish11
3 Replies

8. Shell Programming and Scripting

Shellscripting -z option

Can someone explain the -z option in shellscripting. I did this. When I was in both ksh and bash it echoed back hi. #!/bin/ksh if then echo hi fi When I echoed $BASH_VERSION in bash it gave a version. When I echoed $BASH_VERSION in ksh it was blank. I thought -z was... (4 Replies)
Discussion started by: cokedude
4 Replies
XML_PARSER_SET_OPTION(3)						 1						  XML_PARSER_SET_OPTION(3)

xml_parser_set_option - Set options in an XML parser

SYNOPSIS
bool xml_parser_set_option (resource $parser, int $option, mixed $value) DESCRIPTION
Sets an option in an XML parser. PARAMETERS
o $parser - A reference to the XML parser to set an option in. o $option - Which option to set. See below. The following options are available: XML parser options +---------------------------+--------------------------------------+---+ | Option constant | | | | | | | | | Data type | | | | | | | | Description | | | | | | +---------------------------+--------------------------------------+---+ | | | | | XML_OPTION_CASE_FOLDING | | | | | | | | | integer | | | | | | | | Controls whether case-folding is | | | | enabled for this XML parser. Enabled | | | | by default. | | | | | | | | | | | XML_OPTION_SKIP_TAGSTART | | | | | | | | | integer | | | | | | | | Specify how many characters should | | | | be skipped in the beginning of a tag | | | | name. | | | | | | | | | | | XML_OPTION_SKIP_WHITE | | | | | | | | | integer | | | | | | | | Whether to skip values consisting | | | | of whitespace characters. | | | | | | | | | | |XML_OPTION_TARGET_ENCODING | | | | | | | | | string | | | | | | | | Sets which target encoding to use | | | | in this XML parser.By default, it is | | | | set to the same as the source encod- | | | | ing used by xml_parser_create(3). | | | | Supported target encodings are | | | | ISO-8859-1, US-ASCII and UTF-8. | | | | | | +---------------------------+--------------------------------------+---+ o $value - The option's new value. RETURN VALUES
This function returns FALSE if $parser does not refer to a valid parser, or if the option could not be set. Else the option is set and TRUE is returned. PHP Documentation Group XML_PARSER_SET_OPTION(3)
All times are GMT -4. The time now is 01:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy