Need help with script option


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help with script option
# 1  
Old 03-09-2010
Need help with script option

Hi,

So my script reads $1 on the command line.
example:
Code:
SCRIPT_NAME 1111

In my script I use a nawk statement to grab $1 but I also need it to read $1 from the variable (1111 from command line in the example)

Code:
nawk -F, '($1~1111)' *.$date.*

What can I do so that this nawk statement takes $1 from it's results and uses the variable given at the command line?

Thank you for any responses.

Last edited by Scott; 03-09-2010 at 03:46 PM.. Reason: Please use code tags
# 2  
Old 03-09-2010
use -v switch.
something like:
Code:
awk -F, -v var=$1 '($1~var)' *.$date.*

# 3  
Old 03-09-2010
That worked like a charm! thank you!!![COLOR="#738fbf"]

Last edited by llsmr777; 03-09-2010 at 04:33 PM.. Reason: Code tags please...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to call a menu script and redirect each option to a text file

Hello, I want to design a script that will call an existing menu script and select options one by one and redirict the out put to a file. For example;- In the script MENU.sh there are 10 options i want to design a script MENU2.sh that will select option 2 3 4 6 7 10 and redirict the output... (4 Replies)
Discussion started by: spradha
4 Replies

2. Shell Programming and Scripting

Call one script option to other in shell script

HI Guys, My Script abc.sh 1) Checks 2) CA Scipt 3) CIA Script 0) Exit Enter Choice : Now if i select choice 2 then after finshed choice 2 wait for 40 min and run choice 3 what i can write in CA Scipt option: if then My Code : ... (3 Replies)
Discussion started by: pareshkp
3 Replies

3. Shell Programming and Scripting

su option to use with pasword in script

Hi, I am trying to create warraper script to run a shell script in which can be run using particular user id only . I have deoded the user password thst user and wanted to pass while running inside shell script as below .Script should come back to same shell after executing screen_update.sh.... (2 Replies)
Discussion started by: anthriksh2000
2 Replies

4. UNIX for Advanced & Expert Users

Hi, can some one help in selecting option in script

Hi, Some one help in completing the script: I need to write a script which has to select automatically only one option(below case only D - ALL) out of all options instead of manual entry There is an script which is used to test number of connection to different db that it connects when we... (7 Replies)
Discussion started by: PAKumar
7 Replies

5. Shell Programming and Scripting

perl script command line option driven script

could someone show me a sample command line option driven script? i want to see an easy way to write one and how i can execute it using command line options such as typing in read.pl -i <id> -c <cmds> -s <start> -e <end> would read out all the commands run by ID . from start time to... (7 Replies)
Discussion started by: kpddong
7 Replies

6. Shell Programming and Scripting

Option 4 in script broken

Hi, I need some help with an issue on my script. When I run option 3 it works just fine. When I run Option 4 which puts back the changes done in option 3 it fails. Oddly enough when I run Option 4 right after it failed it seems to work. I am not sure why that is or is a false positive. In... (2 Replies)
Discussion started by: richsark
2 Replies

7. Shell Programming and Scripting

recently introduced to the newer option for find...does an older option exist?

To find all the files in your home directory that have been edited in some way since the last tar file, use this command: find . -newer backup.tar.gz Is anyone familiar with an older solution? looking to identify files older then 15mins across several directories. thanks, manny (2 Replies)
Discussion started by: mr_manny
2 Replies

8. Shell Programming and Scripting

Need help using % or like option in shell script

Hi All, I need help from you guys. In the shell script I have, I have a variable that has a value as follows a=abc_20100614_12346 I want to do the following logic, if a like '%20100614%' then true else false fi Guys please help me out on this. I tried the follwoing option ... (9 Replies)
Discussion started by: srini02
9 Replies

9. Shell Programming and Scripting

\n option in script

I have a series of around 20 files as my program output. The final line of my script gets the no of files and the file list for the present day. The no of files shoudl be printed first and the files for today must be printed in the next line. Ialso understood that echo -e must be used for with \n.... (4 Replies)
Discussion started by: venkidhadha
4 Replies

10. Shell Programming and Scripting

option followed by : taking next option if argument missing with getopts

Hi all, I am parsing command line options using getopts. The problem is that mandatory argument options following ":" is taking next option as argument if it is not followed by any argument. Below is the script: while getopts :hd:t:s:l:p:f: opt do case "$opt" in -h|-\?)... (2 Replies)
Discussion started by: gurukottur
2 Replies
Login or Register to Ask a Question