Passing user argument


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Passing user argument
# 1  
Old 11-21-2012
Passing user argument

Hi all:

I'm trying to pass an argument to a command but it's being difficult.

Code:
#!/bin/bash
set -xv

if [ "$#" -gt 1 ]; then
  echo "More than 1 argument entered"
  echo "Please enter a month using 3 character names, ie, Jan, Mar, Apr, Dec" && exit 1
fi

if [ "$#" -eq 0 ]; then
  echo "Please enter a month using 3 character names, ie, Jan, Feb, Jun, Oct, Nov" && exit 1
fi

echo "$1"

cat ti.files | perl -ne '/.tgz$/ && !/blockpool/ && !/core.tgz/ && print' | awk '{if (($6 == ?????) && ($5 < 20000000) && ($5 > 1000000)) print $0}' | sort -nk7

Each line if the 'ti.files' is a line from the output of 'ls -la'. So the $6 position is the month, $5 is the file size, etc.

What is suppose to happen, the script is executed from command line and the user supplies a month name.
Quote:
Example, 'runme Oct'.
That month is to be in the position where the ????? marks are.

But that is not happening. Little help, please?

Many thanks!
# 2  
Old 11-21-2012
Code:
 
awk '{if 
 
to
 
awk -v mon="$1" '{if (($6 == mon)

---------- Post updated at 12:54 PM ---------- Previous update was at 12:51 PM ----------

you can try this

Code:
 
awk -v mon="$1" '/.tgz$/ && !/blockpool/ && !/core.tgz/{if($6==mon && $5 < 20000000 && $5 > 1000000)print}' ti.files | sort -nk7

This User Gave Thanks to itkamaraj For This Post:
# 3  
Old 11-21-2012
Or (not tested):
Code:
perl -lane 'BEGIN{$mon=shift @ARGV}
print if (/\.tgz\z/          and
          !/blockpool/       and
	  !/core\.tgz/       and
	  $F[5] eq $mon      and
	  $F[4] < 20_000_000 and
	  $F[4] > 1_000_000)' "$1" ti.files|sort -nk7


Last edited by elixir_sinari; 11-21-2012 at 10:54 PM..
This User Gave Thanks to elixir_sinari For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Passing a second argument

I am trying to pass a second argument like so: if ] then export ARG2=$2 else message "Second argument not specified: USAGE - $PROGRAM_NAME ARG1 ARG2" checkerror -e 2 -m "Please specify if it is a history or weekly (H or W) extract in the 2nd argument" fi however, it always goes... (4 Replies)
Discussion started by: MIA651
4 Replies

2. Shell Programming and Scripting

Argument passing

How to pass the alphabet character as a argument in case and in if block? ex: c=$1 if a-z ]] then echo "alphabet" case $1 in a-z) echo "the value is a alphabet" edit by bakunin: please use CODE-tags. We REALLY mean it. (9 Replies)
Discussion started by: Roozo
9 Replies

3. Shell Programming and Scripting

Help with passing argument

Hi, I have a script that is scheduled with cron and runs every night. The cron part looks like this: 00 20 * * 0,1,2,3,4,5,6 /usr/local/bin/BACKUP TBTARM HOT DELETE My issue is with the 3rd parameter. Somewhere in the script, i want to tell the script to delete some files if the 3rd... (7 Replies)
Discussion started by: dollypee
7 Replies

4. Shell Programming and Scripting

passing argument from one function to another

Hi all, In the given script code . I want to pass the maximum value that variable "i" will have in function DivideJobs () to variable $max of function SubmitCondorJob(). Any help? Thanks #!/bin/bash ... (55 Replies)
Discussion started by: nrjrasaxena
55 Replies

5. Shell Programming and Scripting

passing an option as an argument!

Hi Folks I have got to the point where I can specify the arguments but how to pass an option is still mystery to me. Example: temp.csh a b c d set temp1 = $argv set temp2 = $argv set temp3 = $argv echo $temp1 a echo $temp2 b echo $temp3 c d I WANT: temp.csh a b c d -S 1 set temp1... (2 Replies)
Discussion started by: dixits
2 Replies

6. Programming

Passing argument to a program!!

Hi friends, I have a small query, hope u will help me with it. I want to write a small program which would take an integer as an argument, then I want to save that argument in a variable of type int. Could you please help me with it. Here is my program #include <stdio.h> int main(int... (4 Replies)
Discussion started by: gabam
4 Replies

7. Shell Programming and Scripting

Using GET, passing argument to bash

Hi guys! So, I use GET ( Simple user agent using LWP library. ) on a remote text file that is then passed to bash and executed. However, I need to pass that bash script a single argument, and so far nothing that I have tried has worked, although I have learned quite a bit about input/output... (5 Replies)
Discussion started by: Rhije
5 Replies

8. Shell Programming and Scripting

Passing argument to nawk

Hi all I have got a file digits.data containing the following data 1 3 4 2 4 9 7 3 1 7 3 10 I am writing a script that will pass an argument from C-shell to nawk command. But it seems the values in the nawk comman does not get set. the program does not print no values out. Here is the... (2 Replies)
Discussion started by: ganiel24
2 Replies

9. Shell Programming and Scripting

passing argument to shell script that reads user inputs

Hi, Lets say I have a script "ss" which does this read abc echo $abc read pqr echo $pqr Now if I want to pass and argument to only "abc" how do I do it. If I do echo "somevalue" | ss, it does not prompt for pqr and its value comes out as blank. Any help is appreciated Thanks P (6 Replies)
Discussion started by: patjones
6 Replies

10. Shell Programming and Scripting

passing Argument

Hi All, i have script like below.. echo "1) first option" echo "" echo "2) second option" echo "" echo "*) please enter the correct option" read select case $select in 1) echo "first option selected" ;; 2) echo "second option selected" ;; *) echo "please enter the correct... (4 Replies)
Discussion started by: Shahul
4 Replies
Login or Register to Ask a Question