Bash script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bash script
# 1  
Old 04-28-2011
Bash script

Hi ,
Some one can help me
i need to write a script using while loop to run till the number is postive ie <!= 0
# 2  
Old 04-28-2011
Please try something so we can help on some base.
# 3  
Old 04-28-2011
You don't rely expect people to make the script for you ?!!

Make one by your self, and after we'll help you make it work
# 4  
Old 04-28-2011
Code:
#!/bin/bash
a=0
while [ "$a" -ge 0  ]
do
 a=$(($a+1))

 if [ "$a" -le 0 ]
 then
   break
 fi

 echo -n "$a "
done

echo; echo; echo

exit 0


Last edited by Franklin52; 04-29-2011 at 03:59 AM.. Reason: Please use code tags, thank you
# 5  
Old 04-29-2011
Quote:
using while loop to run till the number is postive ie <!= 0
If I understand you correctly what you want is to increment a number until it reaches above 0?

but the code you offered as your attempt will only loop in the while "$a" is already greater than or equal to 0:

Code:
a=0
 while [ "$a" -ge 0  ]

Then since "$a" is instantiated as 0 and it matches the first while condition you start incrementing "$a":

Code:
a=$(($a+1))

after that increment you are testing if "$a" is less than or equal to 0 and break out of the while loop if it is:

Code:
if [ "$a" -le 0 ]
  then
    break
  fi

Essentially you do this:

1. Set $a = 0
2. Test is $a is equal or grater than zero
3. Increment $a by 1 (making it now $a=1)
4. Test for it to be 0 or less and break if it is
5. echo $a
6. Restart while loops with $a equal to 1

This will never break as $a will always be 0 or greater which means it will evaluate to true in the while condition and then it will just echo numbers to screen growing by 1 each time forever (or until you manually kill it).


Try this instead:

Code:
#!/bin/bash
a=0
CURR_MIN=$(date +%M |tr -d '0')
BREAK_MIN=$(($CURR_MIN + 1))
while [ "$a" -eq 0 ]
do
  # Set a predictable condition,
  # anything that will change
  # like the minute in the current time
  # (date +%M)
  CURR_MIN=$(date +%M |tr -d '0')
  if [ $CURR_MIN -ge $BREAK_MIN  ]
  then
    a=$(($a+1))
  fi
  echo -e "\$a: $a\nBREAK_MIN: $BREAK_MIN\nCURR_MIN: $CURR_MIN\n-------------------"
done

echo -e "\n\n\n"
exit 0

Now obviously we could just have easily placed a break inside that if statement instead of increment $a. The point was to show a valid way to break if $a is not 0 though.
# 6  
Old 04-29-2011
i don't how to create thread procedure..
Just i want to ask How to search and display name of zero byte file
i have used find command but it is showing complete file path
Thanks
# 7  
Old 04-29-2011
@vivek1489
Please go to the appropriate forum (Shell Programming and Scripting) and click on the "New Thread" button at the top on the left. You really cannot miss that big blue button.


If you create a new thread we will answer.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. Shell Programming and Scripting

How to block first bash script until second bash script script launches web server/site?

I'm new to utilities like socat and netcat and I'm not clear if they will do what I need. I have a "compileDeployStartWebServer.sh" script and a "StartBrowser.sh" script that are started by emacs/elisp at the same time in two different processes. I'm using Cygwin bash on Windows 10. My... (3 Replies)
Discussion started by: siegfried
3 Replies

3. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

4. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

5. UNIX for Dummies Questions & Answers

Im new to bash scriping and i found this expression on a bash script what does this mean.

# check host value regex='^(||1|2|25)(\.(||1|2|25)){3}$' if ')" != "" ]; then if ]; then echo host $host not found exit 4 fi elif ]; then echo $host is an invalid host address exit 5 fi espeacailly the top regex part? ---------- Post updated at 06:58 PM ---------- Previous update was... (1 Reply)
Discussion started by: kevin298
1 Replies

6. Shell Programming and Scripting

Run bash script within a bash script

Hi everybody, Lets say, I have two bash scripts named down.sh and up.sh located in two different folders named ~/home/a/ and ~/home/b/ Now I want to write another bash script, located in ~/home/ which runs these other two scripts, so that I only have to execute this one comprehensive script... (1 Reply)
Discussion started by: NBurkhard
1 Replies

7. Shell Programming and Scripting

Bash Script: modify bash

Hey guys, i'm having trouble complete one of my bash scripts I'm hoping to --- 1. Modify bash so that then the user types "ls" the command that is executed is "ls -al" 2. Modify the point of entry in bash when the user accesses it, moving the initial location to /var I've somewhat done #2,... (9 Replies)
Discussion started by: LibRid
9 Replies

8. Shell Programming and Scripting

how to make your bash script run on a machine with csh and bash

hi, i have a script that runs on bash and would like to run it on a machine that has csh and bash. the default setting on that machine is csh. i dont want to change my code to run it with a csh shell. is there any way i can run the script (written in bash) on this machine? in other words is there... (3 Replies)
Discussion started by: npatwardhan
3 Replies

9. Shell Programming and Scripting

passing variable from bash to perl from bash script

Hi All, I need to pass a variable to perl script from bash script, where in perl i am using if condition. Here is the cmd what i am using in perl FROM_DATE="06/05/2008" TO_DATE="07/05/2008" "perl -ne ' print if ( $_ >="$FROM_DATE" && $_ <= "$TO_DATE" ) ' filename" filename has... (10 Replies)
Discussion started by: arsidh
10 Replies

10. Shell Programming and Scripting

Why generate "ash and bash" different output for same bash script?

Hi, For my bash script, terminal with bash is generate an OK output and program works right. already, terminal with ash have "line 48: syntax error: Bad substitution" output and program don't work. :confused: (0 Replies)
Discussion started by: s. murat
0 Replies
Login or Register to Ask a Question