Help with looping in shell scripting


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with looping in shell scripting
# 1  
Old 01-07-2012
Java Help with looping in shell scripting

Hi there im totally new to shell scripting and i find it very interesting. I come from java programming background.

Basically what i need is to loop a string of say all possible permutations of 20 displayable characters and md5 hash the string till it produces a 128 bit hash value with say 4 leading hex zeros. (meaning the first 4 characters of the hash value) Is this possible in shell scripting? (bash)

Thanks for the help!!!

Last edited by jremio; 01-07-2012 at 11:38 AM..
# 2  
Old 01-07-2012
My overly simplistic answer would be: yes, anything's possible in shell scripting...

Not to be a wise-guy, but loops are loops...and most languages are simply restacks of others based on the priorities, preferences and motivations of their developers. How would you have done it in your Java background? Start there and we can help you restage it in your new syntax...
# 3  
Old 01-08-2012
After reading some tutorials on shell scripting I got a rough idea...

What I am trying to do is to do a loop on concatStr such that it goes from 0000 to 0001 and 0002 and so forth, each time running thru the md5sum function.

Can anyone help me with the loop syntax?

Code:
concatStr="0000"

echo $concatStr | md5sum

Moderator's Comments:
Mod Comment How to use code tags

Last edited by Franklin52; 01-09-2012 at 03:28 AM.. Reason: Please use code tags for code and data samples, thank you
# 4  
Old 01-08-2012
Code:
for val in $( seq -w 0 9999 )
do
  echo $val | md5sum
done

--ahamed
# 5  
Old 01-08-2012
Quote:
Originally Posted by ahamed101
Code:
for val in $( seq -w 0 9999 )
do
  echo $val | md5sum
done

--ahamed
Thanks for the reply bro,

i did try that... but its not what im looking for. using that, the values are from 0, 1, 2, 3 to 9999 what i need is 0000, 0001, 0002, 0003, to 9999... prefix 0 must be in front in short...
# 6  
Old 01-08-2012
-w in seq serves the purpose of equal width.

Code:
root@bt > for val in $( seq -w 0 9999 ); do echo $val ; done | more
0000
0001
0002
0003
0004
0005
0006

--ahamed

Last edited by ahamed101; 01-08-2012 at 05:33 AM..
# 7  
Old 01-08-2012
Thanks it worked!!! awesome!!!
Code:
for i in $( seq -w 0000 9999)
do
  echo $i | md5sum >> /home/ubuntu/Documents/log
done

I got one problem though, when the echo logs into the log file, is there any way to make it stop when one of the md5sum starts with 000000?

example hash value: 000000d414474e4033ac29ccb8653d9b


Moderator's Comments:
Mod Comment How to use code tags when posting data and code samples.

Last edited by Franklin52; 01-08-2012 at 09:26 AM.. Reason: Please use code tags for data and code samples, thank you
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell scripting looping issue

#!bin/ksh --------------------------------------------------------------------------------------------- -- Get sequence number from database --------------------------------------------------------------------------------------------- .os rm... (3 Replies)
Discussion started by: swathi reddy1
3 Replies

2. Shell Programming and Scripting

Simple looping in shell

Hii all. I have a problem with my shell script. This is my code while do space.exe inputs/gr$count >> outputs/t$count count=$ done I ussually work in cygwin. When i tried in linux(ubuntu, kali linux) i found error said Syntax error : end of file unexpected (expecting "do")... (6 Replies)
Discussion started by: weslyarfan
6 Replies

3. Shell Programming and Scripting

Looping not completing in shell script

Hi, Iam using below code to login to servers to get cpu utilisation. but output is coming for only one server. code is below root@blr-svr-oclan-01 # more SSSC_CPU_UTIL1.sh #!/bin/sh echo "CPU UTILIZATION" while read line; do IDLE=`/usr/local/bin/sshpass -p 'xxx' ssh xxx@$line 'sar 2 2' |... (1 Reply)
Discussion started by: surender reddy
1 Replies

4. Shell Programming and Scripting

C Shell Script: While function not fully looping

I am new to scripting and this is probably the 4th or 5th simple script I have written. I am working with a HUGE number of data that need to be organized into folders and named a certain way. I wrote the naming script using a while function to go through the 1000-some folders and rename the files... (0 Replies)
Discussion started by: notluckyhannah
0 Replies

5. Shell Programming and Scripting

[Solved] help me in this looping in shell scripting

Hi, #!/bin/ksh result='/TIA/app/UniQP/queue/document/CSB' i=0; while ; do i=`expr $i + 1` if ($i -lt 5);then echo "THerrFile_$i.err"; else break; fi done ... (0 Replies)
Discussion started by: sudhir_83k
0 Replies

6. Shell Programming and Scripting

Call Shell scripting from Perl Scripting.

Hi How to call a shell scripting through a Perl scripting? Actually I need some value from Shell scripting and passes in the Perl scripting. So how can i do this? (2 Replies)
Discussion started by: anupdas
2 Replies

7. Shell Programming and Scripting

Looping through a shell script with sql statements

Hello members, I'm working on the Solaris environment and the DB i'm using is Oracle 10g. Skeleton of what I'm attempting; Write a ksh script to perform the following. I have no idea how to include my sql query within a shell script and loop through the statements. Have therefore given a... (4 Replies)
Discussion started by: novice82
4 Replies

8. Shell Programming and Scripting

Convert shell script for looping

Situation: I have a working shell script on our file server (OSXS Tiger) to connect to a workstation, which is using a portable home directory (phd), and rsync a user's MirrorAgent.log. I'm not that strong of a scripter (obviously), but I would like to add other workstations to this script as they... (4 Replies)
Discussion started by: le0pard13
4 Replies

9. Shell Programming and Scripting

looping through a variable in a shell script

hi, my first question is :- i would like to know how do i loop through the output of a variable. for ex:- if i have a variable called x and echo $x gives the output like feb 19 07 feb 20 07 feb 21 07 i would like to know how do i loop through this since it is separated and i... (1 Reply)
Discussion started by: ramachandranrr
1 Replies

10. Shell Programming and Scripting

difference between AIX shell scripting and Unix shell scripting.

please give the difference between AIX shell scripting and Unix shell scripting. (2 Replies)
Discussion started by: haroonec
2 Replies
Login or Register to Ask a Question