Sponsored Content
Top Forums UNIX for Dummies Questions & Answers How to pass command line argument in shell script? Post 302848555 by RudiC on Thursday 29th of August 2013 01:48:33 PM
Old 08-29-2013
Search these fora - there's many an example of exactly your request.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Passing command line argument between shell's

Hi, I am facing a problem to pass command line arguments that looks like <script name> aa bb "cc" dd "ee" I want to pass all 5 elements include the " (brackets). when I print the @ARGV the " disappear. I hope I explain myself Regards, Ziv (4 Replies)
Discussion started by: zivsegal
4 Replies

2. Shell Programming and Scripting

Pass command line argument to variable

Hi, I had written a shell script to pass command line argument to variable in a function. Here is my code: main if ; then .$1 echo $1 get_input_file else echo "input file $1 is not available" fi get_input_file() { FILE = "$1" echo $FILE } (10 Replies)
Discussion started by: Poonamol
10 Replies

3. Shell Programming and Scripting

shell script for ftp files passed in command line argument

i want to write a shell script function that will ftp the files passed in the command line . i have written a shell script for ftp but how will it do for all files passed in command line argument , i am passing 4 files as argument ./ftp.sh file1 file2 file3 file4 code written by me... (5 Replies)
Discussion started by: rateeshkumar
5 Replies

4. Shell Programming and Scripting

How we can pass the argument when calling shell script from perl script

Can someone let me know how could I achieve this In one of per script I am calling the shell script but I need to so one thing that is one shell script call I need to pass pne argument.In below code I am calling my ftp script but here I want to pass one argument so how could I do this (e.g:... (5 Replies)
Discussion started by: anuragpgtgerman
5 Replies

5. Shell Programming and Scripting

How to pass a filename as a command line argument

Hi,I have a script which is given below :#!/bin/bash. ini_script.shdb2 connect to $DB_NAME user $DB2_UID using $DB2_PASSWORDfor file in `ls -1 ./sql/ddw/`do echo "Executing the file $file" echo db2 -tvf $filedonedb2 quiti want this script to accept directorie's names present in... (1 Reply)
Discussion started by: ektubbe
1 Replies

6. Programming

How to pass the command line arguments to the shell script in c language?

hi, I am new in the shell script, and c programming with linux. I am looking to pass the arguments in c program that should be executed by the shell script. e.g. #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv) { int i; for (i=1;i<argc; i++) { ... (2 Replies)
Discussion started by: sharlin
2 Replies

7. Shell Programming and Scripting

How to pass command line argument in shell script?

I need to write a shell script, when I run that script I should pass those arguments if not, then script should not run and pass the error message like invalid option - - should pass the argument. and Exit from the script https://www.unix.com/images/misc/progress.gif (1 Reply)
Discussion started by: Nsharma3006
1 Replies

8. Shell Programming and Scripting

Pass file as one of argument in shell

Hi, Is there any way that we can pass one file as one of the argument in shell script ? (1 Reply)
Discussion started by: Selva_2507
1 Replies

9. Shell Programming and Scripting

How to pass Oracle sql script as argument to UNIX shell script?

Hi all, $ echo $SHELL /bin/bash Requirement - How to pass oracle sql script as argument to unix shell script? $ ./output.sh users.sql Below are the shell scripts and the oracle sql file in the same folder. Shell Script $ cat output.sh #!/bin/bash .... (7 Replies)
Discussion started by: a1_win
7 Replies

10. Shell Programming and Scripting

How to pass each line of a text file as an argument to a command?

I'm looking to write a script that takes a .txt filename as an argument, reads the file line by line, and passes each line to a command. For example, it runs command --option "LINE 1", then command --option "LINE 2", etc. I am fetching object files from a library file, I have all the object file... (2 Replies)
Discussion started by: Paul Martins
2 Replies
WWW::Search::Pagesjaunes(3pm)				User Contributed Perl Documentation			     WWW::Search::Pagesjaunes(3pm)

NAME
WWW::Search::Pagesjaunes - Lookup phones numbers from www.pagesjaunes.fr SYNOPSIS
use WWW::Search::Pagesjaunes; my $pj = new WWW::Search::Pagesjaunes; $pj->find( activite => "Plombier", localite => "Paris" ); do { print $_->entry . " " foreach ($pj->results); } while $pj->has_more; DESCRIPTION
The WWW::Search::Pagesjaunes provides name, phone number and addresses of French telephone subscribers by using the <http://www.pagesjaunes.fr> directory. METHODS
Two classes are used in this module, a first one (WWW::Search::Pagesjaunes) to do the fetching and parsing, and the second one and a second one (WWW::Search::Pagesjaunes::Entry) holding the entry infos. Here are the methods for the main WWW::Search::Pagesjaunes module: new() The constructor accept an optional LWP::UserAgent as argument, if you want to provide your own. find( %request ) Here are the values for the %request hash that are understood. They each have two name, the first is the french one and the second is the english one: nom / name Name of the person you're looking for. activite / business Business type of the company you're looking for. Note that if this field is filled, the module searches in the yellow pages. localite / town Name of the town you're searching in. prenom / firstname First name of the person you're looking for. It is not set if you set the 'activite' field. departement / district Name or number of the Departement or Region you're searching in. results() Returns an array of WWW::Search::Pagesjaunes::Entry containing the first matches of the query. limit($max_number_of_entries) Set the maximum number of entries returned. Default to 50. has_more() If the query leads to more than a few results, the field has_more is set. You can then call the results() method again to fetch the datas. The WWW::Search::Pagesjaunes::Entry class has six methods: new($name, $address, $phone, $fax) Returns a new WWW::Search::Pagesjaunes::Entry. name Returns the name of the entry. address Returns the address of the entry. phone Returns the phone number of the entry. is_fax Returns true if the phone number is a fax one, false otherwise. Note that currently, this method always returns 0. entry($separator) Returns the concatenation of the name and the phone number, separated by " - ". You can specify your own separator as first argument. BUGS
The phone numbers are sometimes not correctly parsed, esp. when one entry has several phone numbers. If you found a bug and want to report it or send a patch, you are encouraged to use the CPAN Request Tracker interface: https://rt.cpan.org/NoAuth/Dists.html?Queue=WWW-Search-Pagesjaunes <https://rt.cpan.org/NoAuth/Dists.html?Queue=WWW-Search-Pagesjaunes> COPYRIGHT
Please read the Publisher information of <http://www.pagesjaunes.fr> available at the following URL: <http://www.pagesjaunes.fr/pj.cgi?html=commun/avertissement.html&lang=en> WWW::Search::Pagesjaunes is Copyright (C) 2002, Briac Pilpre This module is free software; you can redistribute it or modify it under the same terms as Perl itself. AUTHOR
Briac Pilpre <briac@cpan.org> perl v5.12.4 2011-11-02 WWW::Search::Pagesjaunes(3pm)
All times are GMT -4. The time now is 09:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy