The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
How to pass one parameter from one column to another column in AWK prasanta jena Shell Programming and Scripting 1 07-30-2007 06:08 AM
Capturing the values of column in one parameter mgirinath Shell Programming and Scripting 5 06-14-2006 01:43 PM
using tab to finish command line parameter kymberm Shell Programming and Scripting 3 09-20-2002 03:54 PM
Command line parameter for C program Wing m. Cheng High Level Programming 3 05-18-2002 09:43 AM
Command Line width parameter Scoogie UNIX for Dummies Questions & Answers 2 02-08-2002 05:04 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-22-2008
melanie_pfefer melanie_pfefer is offline
Registered User
  
 

Join Date: Nov 2006
Posts: 234
get the first column of each line as a parameter

hi

I have a file with this format


server1ort1
server2ort2
server3ort3

I already built a script that starts 1 server.

I want to add 'ALL' option to start all servers

how to do that (for loop? awk? sed....)


thanks for your help
  #2 (permalink)  
Old 07-22-2008
danmero danmero is offline Forum Advisor  
  
 

Join Date: Nov 2007
Location: 45.48-73.63
Posts: 1,421
What have you tried so far and where exactly are you stuck?
And please use code tags for your samples.
  #3 (permalink)  
Old 07-22-2008
zaxxon's Avatar
zaxxon zaxxon is offline Forum Staff  
Moderator
  
 

Join Date: Sep 2007
Location: Germany
Posts: 2,276
snippet:

Code:
INFILE="./myserverlist"

if [[ $1 = "ALL" ]]; then
   while read SERVER PORT; do
      echo ${SERVER} ${PORT}
   done < ${INFILE}
else
   echo "No or wrong parameter!"
fi

exit 0
Change the "echo" vs. your start syntax.
You can parse other parameters with optargs or witch case/esac.


EDIT: Sorry, yes, Danmero is right, I was a bit too fast. Please use tags and show what you got next time.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:29 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0