| New Reply |
Unix script problem |
Share Thread | Thread Tools |
| Mar2-12, 08:26 AM | #1 |
|
|
Unix script problem
1. The problem statement, all variables and given/known data
Trying to find how many numbers contains 5 between 1 to 4321 2. Relevant equations n/a 3. The attempt at a solution #!/bin/bash typeset -i current=1 typeset -i times=0 while [ $current -le 4321 ] ; do if [ ] ; then <<<<<<<<<<< stuck here, not sure what to put in if, tried grep etc nonthing works yet times=times+1 fi current=current+1 done echo there are $times numbers that has a 5 |
| PhysOrg.com |
science news on PhysOrg.com >> Hong Kong launches first electric taxis >> Morocco to harness the wind in energy hunt >> Galaxy's Ring of Fire |
| Mar2-12, 08:42 AM | #2 |
|
|
nvm solved it just gonna add this for future people whos gonna look up this kind of problem in google
if [[ $current = *[5] ]] ; then |
| New Reply |
| Thread Tools | |
Similar Threads for: Unix script problem
|
||||
| Thread | Forum | Replies | ||
| Windows VS Unix Problem | Programming & Comp Sci | 6 | ||
| Search and Replace Unix Shell Script | Programming & Comp Sci | 1 | ||
| UNIX scp script | Programming & Comp Sci | 3 | ||
| Comsol Multiphysics/Script - Heat transfer problem | General Engineering | 0 | ||
| Unix Shell Script | Programming & Comp Sci | 3 | ||